Friday, March 20, 2009

double quote " problem in C#

in C# if you want to replace " double-quota or search it you have to use this way.

C#: sInput = sInput.Replace("\"", "")
VB: sInput = sInput.Replace("""", "")

No comments:

Post a Comment