C# String.Format格式化json字符串中包含"{" "}"报错问题

json.Append(String.Format("{\"total\":{0},\"row\":{1}}", lineCount, strJSON));直接会报错

字符串中包含{或者},则需要用{{ 来代替字符 {,用}} 代替 }

如:json.Append(String.Format("{{\"total\":{0},\"row\":{1}}}", lineCount, strJSON));

C# String.Format格式化json字符串中包含"{" "}"报错问题,布布扣,bubuko.com

C# String.Format格式化json字符串中包含"{" "}"报错问题

上一篇:嵌套的for循环执行顺序。可以让内外for循环交替执行。简单解析json数组。求js中两个时间差值。


下一篇:scala的构造函数