C#中String.Format格式化json中包含"{" "}"报错问题解决



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

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

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


原文链接:C#中String.Format格式化json中包含"{" "}"报错问题解决