c# string with $ prefix code example
Example: c# string verbatim
//start @ character
string str = @"dont have to escape \ sign, use double "" for single ";
//dont have to escape \ sign, use double " for single
//start @ character
string str = @"dont have to escape \ sign, use double "" for single ";
//dont have to escape \ sign, use double " for single