最佳答案
如何在使用string.Format
时转义括号?
例如:
String val = "1,2,3"String.Format(" foo {{0}}", val);
此示例不引发异常,但它输出字符串foo {0}
。
有没有办法摆脱困境?