For you to output foo {1, 2, 3}
you have to do something like:
string t ="1, 2, 3";string v =String.Format(" foo {{{0}}}", t);
To output a {
you use {{
and to output a }
you use }}
.
For you to output foo {1, 2, 3}
you have to do something like:
string t ="1, 2, 3";string v =String.Format(" foo {{{0}}}", t);
To output a {
you use {{
and to output a }
you use }}
.