Arnas
Arnas
Thats correct. That would be goal of using CsvDataReader not to read whole file to memory as file can be very large.
my observation was that only `object GetValue(int index)` is called and obviously `Read`. I would say index based dictionary with type converter would do a job in the begining.
Can confirm that from my observation only `FieldCount`, `Read `and `GetValue` being used. As per providing converters, since we have facility in CsvReader to read header and identify columns, we...