I want to print two double quotes in C# as the output. How to do this?
I mean the output should be: \"\" Hello World \"\"
\"\" Hello World \"\"
StringBuilder sb = new StringBuilder(); sb.Append("\"Hello World \""); string s = sb.ToString();