I want to print two double quotes in C# as the output. How to do this?
I mean the output should be: \"\" Hello World \"\"
If you want to put double quotes in a string you need to escape them with a \
eg:
string foo = "here is a \"quote\" character";
If you want to literally output "" Hello World ""
then you'd need:
string helloWorld = "\"\" Hello World \"\"";
output(helloWorld);
(where output is whatever method you are using for output)