ekinbulut / codewave-dotnet-proxy-excel-to-json-converter

Excel to JSON converter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proxy Excel to JSON converter

A easy to use module which reads an excel file with given columns and converts it to json.

Usage

 var excelConverter = new ExcelConverter();
 excelConverter.FilePath = "filename.xlsx";
 excelConverter.Columns = new List<string>()
            {
                "Id",
                "Name"
            };

 var json = await excelConverter.ToJson();

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

Excel to JSON converter


Languages

Language:C# 100.0%