How can brackets be escaped in using string.Format.
string.Format
For example:
String val = \"1,2,3\" String.Format(\" foo {{0}}\", val);
Almost there! The escape sequence for a brace is {{ or }} so for your example you would use:
{{
}}
string t = "1, 2, 3"; string v = String.Format(" foo {{{0}}}", t);