CsvHelper
CsvHelper copied to clipboard
Reduce double dictionary lookup in CsvReader.ParseNamedIndexes()
Each dictionary lookup requires hash calculation and iteration over bucket and match of item. Puropse of existence TryGetValue in Dictionary class is to reduce double lookup to improve performance.