on vb.net I am creating a person class and the resulting object has the fields Id, Name, Age. Then, using JSON.NET, I convert that object into a .json file and save it on the hard disk, but when I open it, everything remains in a single line like this:
{"Id":4,"Nombre":"Juan Perez","Edad":18}
I would like it to appear like this
{
"Id":4,
"Nombre":"Juan Perez",
"Edad":18
}
I mean skip lines ... I need help with this ... thanks