获取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的时候默认是缩进的格式。
获取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的时候默认是缩进的格式。