I\'m working with JSON/CSV files in my asp.net web API project and tried with CSVHelper and ServiceStack.Text libraries but couldn\'t make it work.
The JSON file con
using System.Globalization; using (var csv = new CsvWriter(csvString, CultureInfo.CurrentCulture)) { ... }