tags:

views:

88

answers:

5

i have a python script that i need to convert to c#. the main thing that the python does is it takes a csv file, does a bunch of calculations to it, and creates csv subsets.

which csv library do you recommend that i use for this type of work?

+2  A: 

I've liked LinqToCSV:

http://www.codeproject.com/KB/linq/LINQtoCSV.aspx

Kirk Woll
+1  A: 

I recommend this

Orsol
+1  A: 

If you need to only read csv file use A Fast CSV Reader. If you need to read and write use FileHelpers v2.0 - Delimited (CSV) or Fixed Data Import/Export Framework

Giorgi
+1  A: 

Another one to add to your list: http://csvhelper.com

Josh Close
A: 

This one works very well, too.

ebpower