我正在使用Json.Net将XML序列化为Json。当我将序列化的字符串写入文件时,它只是一行。我如何通过常用标签和缩进来实际看起来像Json?
答案 0 :(得分:87)
将JSON writer Formatting
属性设置为Formatting.Indented
:
jsonWriter.Formatting = Formatting.Indented;
JsonConvert.Serialize*
方法也有重载Formatting
enum(感谢John Flatness)。