c# string literal code example
Example 1: c# write variable in string
int age = 22;
Console.WriteLine($"Age: {age}");
Example 2: 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