How can I add ” character to a multi line string declaration in C#?

Try this:

string s = @"..."".....";

Leave a Comment