CSV Processing in C#
CSV Parsing Intro
Learn how to parse CSVs in C# using CSVHelper library. We will cover non-collection types and most common parsing options.
Read onCSV Parsing Unit Testing
Learn how to unit test CSV parsing. This includes creating and writing CSV files from C#.
Read onCSV Parsing Complete Example
Learn how to integrate CSV parsing pipeline into application code. Complete example, from parsing csv file via domain service, to storing it in a database using repository.
Read onCSV Parsing TypeConverter
Learn how to use TypeConverter to manually process or post-process the field values in CSV. This includes casting to a different type, slicing or filtering string, or any custom operation.
Read onCSV Parse DateTime Fields
Learn how to parse a field in CSV with datetime-like fields using CsvHelper.
Read onCSV Parse List Field
Learn how to parse a field in CSV that contains a list of values separated by another character using CsvHelper.
Read on