/JsonToCSV

Simple program to convert JSON files to CSV

Primary LanguageC#Mozilla Public License 2.0MPL-2.0

JsonToCSV

Simple program to convert JSON files to CSV.
It can convert simple JSON files to CSV.

Release

Screenshot

WHERE TO DOWNLOAD

Download the binary in JSonToCSV Releases

SAMPLE

[
    {
    "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