I am using CsvHelper I need to wrap all values with quotes. Is that possible?
Data = is a List
using (StreamWriter textWriter = new StreamWriter(pat
Just need to add a configuration object. like this
CsvHelper.Configuration.CsvConfiguration config = new CsvHelper.Configuration.CsvConfiguration(); config.QuoteAllFields = true; var csv = new CsvWriter(textWriter, config);