I am using Json.Net to serialize XML into Json . When i write the serialized string to a file it all comes in a single line . How do i get it to actually look like Json with
Set the JSON writer Formatting property to Formatting.Indented:
Formatting.Indented
jsonWriter.Formatting = Formatting.Indented;
The JsonConvert.Serialize* methods also have overloads that take a Formatting enum (thanks John Flatness).
Formatting
Documentation: Serialize an Object