To escape curly braces in c#, use double curly braces. See the example below.
var stringWithCurlyBraces = string.Format("Good {{ ???{0}??? }}","example"); Console.Write(stringWithCurlyBraces); //will output Good { 'example' }
Visit the DevX Tip Bank