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 \"\"
Using a @-char before the 'normal' double quotes will result in printing every special char between those dubble quotes
string foo = @"foo "bar"";