mperdeck / LINQtoCSV

Popular, easy to use library to read and write CSV files.
197 stars 112 forks source link

StreamReader CsvColumn Bug #65

Open china-liudong opened 5 years ago

china-liudong commented 5 years ago

when use csvContent.Read(stream,csvDescription) method if the header is "index_id", we will get " index_id"(is wrong) FieldMapper.cs file need use row[i].Value.Trim() replace use row[i].Value

china-liudong commented 5 years ago

fix