using Newtonsoft.Json.Linq;
public static void Main()
string strText = "'hello'";
strText.Replace("'", "''");
Console.WriteLine("text1: " + strText);
string strText = "'hello'";
strText = strText.Replace("'", "''");
Console.WriteLine("text2: " + strText);