获取JSON无格式的字符串:
new JArray().ToString(Newtonsoft.Json.Formatting.None);
如:
{"A":123,"B":456}
获取JSON缩进格式的字符串:
new JArray().ToString(Newtonsoft.Json.Formatting.Indented);
{ "A":123, "B":456}
在获取JSON的时候默认是缩进的格式。