How do I escape \" in verbatim string? [duplicate]
This question already has an answer here: Can I escape a double quote in a verbatim string literal? 4 answers I am a bit new to c#, and i am stuck at this point, I have a regular string, where i made use of \ to escape " , escape here means that to escape the compilers interpretation of " , and get " printed on the screen, and i get the expected output--> class Program { static void Main(string[] args) { string s1 = "This is a \"regular\" string"; System.Console.WriteLine(s1); System.Console.Read(); } } o/p--> This is a "regular" string Now, i have a verbatim string, and i am trying to escape