Simple program to convert JSON files to CSV.
It can convert simple JSON files to CSV.
[
{
"Id": 1,
"Name": "Mark"
},
{
"Id": 2,
"Name": "Tom"
},
{
"Id": 3,
"Name": "Bill"
}
,
{
"Id": 4,
"Name": "John"
}
]
It produce this:
Id;Name
1;Mark
2;Tom
3;Bill
4;John
