how to put double quotes in string c# code example
Example 1: how to put double quotes in a string c#
string str = "\"How to add doublequotes\"";
Example 2: c# string contain double quote
var lyrics = @"""Alive"", she cried!"
Example 3: c# string contain double quote
var lyrics = "\"Alive\", she cried!"