billgraziano / CsvDataReader

Fast streaming CSV file reader for PowerShell impleted as a DataReader.
40 stars 22 forks source link

Allow column names to be case insensitive #1

Closed billgraziano closed 10 years ago

billgraziano commented 10 years ago

Right now column names are case-sensitive. I need to either use a new storage mechanism or do something like this: http://stackoverflow.com/questions/8935161/how-to-add-a-case-insensitive-option-to-array-indexof

billgraziano commented 10 years ago

And simpler way is just set them both to lower case. I'm sure this will break something eventually but it's OK for now.