CsvHelper
CsvHelper copied to clipboard
Mapping by Index documention code example leftout CsvConfiguration
In the doc Mapping by Index
The CsvConfiguration was created but left out when creating CsvReader
Here is the code in the given example:
using (var csv = new CsvReader(reader, ))
{
csv.Context.RegisterClassMap<FooMap>();
var records = csv.GetRecords<Foo>();
}