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 ""
Console.WriteLine(""" Hello world """);
or
Console.WriteLine(@""""" Hello world """"");
2.1m questions
2.1m answers
60 comments
57.0k users