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 \"\"
When you want to use special character which are exist in you language add \ before that character then special character start behaving as a string. In your case use like this
\"Hello word\"
Out put
"Hello word"