At first, I used custom built CSV helper class, which simply separates CSV formatted string with a comma and push the data into DataTable. However, this class didn't handle double quotation qualifier well enough.
So, I started searching for a CSV library.
One reliable and mostly recommended CSV library was A Fast CSV Reader (aka LumenWorks.Framework.IO) by Sebastien Lorion, but it's not maintained by Paul Hatcher in Github Repo in the name of CsvReader.
The CsvReader library is an extended version of Sebastian Lorien's fast CSV Reader project and provides fast parsing and reading of CSV files by - Paul HatcherThis was quite good, until I found
- CsvReader does not returns the correct row there the CSV format is broken
- When there is CR/LF in the middle of CSV data, this library cannot handle it even though the CR/LR is wrapped by double quotation qualifier.