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