mperdeck / LINQtoCSV

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

Fix reading of raw data #33

Closed provegard closed 2 years ago

provegard commented 10 years ago

Reading raw data (using IDataRow) would previously result in empty rows being yielded from the reader, due to row reuse and clearing. This commit removes row reuse which means that the rows yielded from the reader contain the data they were populated with initially.

Fixes #15