Is there a default/official/recommended way to parse CSV files in C#? I don\'t want to roll my own parser.
Also, I\'ve seen instances of people using ODBC/OLE DB to
If you need only reading csv files then I recommend this library: A Fast CSV Reader If you also need to generate csv files then use this one: FileHelpers
Both of them are free and opensource.