CSV Processing in C#

CSV Processing in C# 10 Feb 2023

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 on
CSV Processing in C# 12 Feb 2023

CSV Writing Intro

Learn how to write CSV files in C# using CSVHelper library.

Read on
CSV Processing in C# 17 Feb 2023

CSV Parsing Unit Testing

Learn how to unit test CSV parsing. This includes creating and writing CSV files from C#.

Read on
CSV Processing in C# 17 Feb 2023 Premium

CSV 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 on
CSV Processing in C# 13 Mar 2023 Premium

CSV 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 on
CSV Processing in C# 11 Apr 2023

CSV Parse DateTime Fields

Learn how to parse a field in CSV with datetime-like fields using CsvHelper.

Read on
CSV Processing in C# 28 Mar 2023 Premium

CSV 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