CsvHelper aliases

Cake.CsvHelper addin

Contians functionality related to reading and writing CSV files.

ReadCsv

ReadCsv<T>(FilePath, ClassMap, CsvHelperSettings)
Alias from Cake.CsvHelper addin
Reads a CSV file into a C# object.
ReadCsv<T>(FilePath, ClassMap)
Alias from Cake.CsvHelper addin
Reads a CSV file into a C# object.
ReadCsv<T>(FilePath, CsvHelperSettings)
Alias from Cake.CsvHelper addin
Reads a CSV file into a C# object.
ReadCsv<T>(FilePath)
Alias from Cake.CsvHelper addin
Reads a CSV file into a C# object.

WriteCsv

WriteCsv<T>(FilePath, List<T>, ClassMap, CsvHelperSettings)
Alias from Cake.CsvHelper addin
Writes the records to the speficed file using the specified class mapp and settings.
WriteCsv<T>(FilePath, List<T>, CsvHelperSettings)
Alias from Cake.CsvHelper addin
Writes the records to the speficed file using the specified class mapp and settings.
WriteCsv<T>(FilePath, List<T>, Dictionary<string, string>, CsvHelperSettings)
Alias from Cake.CsvHelper addin
Writes the records to the speficed file using the specified class mapp and settings.
WriteCsv<T>(FilePath, List<T>)
Alias from Cake.CsvHelper addin
Writes the records to the speficed file using the specified class mapp and settings.