tags:

views:

62

answers:

2

I need to create a CSV file in C#

I could do this myself and I have a java utility I wrote to do this as a reference. However it would be easier to use an existing .net library or utility. Do any such libraries/utilities exists?

+2  A: 

Take a look at this: http://www.codeproject.com/KB/aspnet/ExportClassLibrary.aspx

Konamiman
+1  A: 

Usually the problems lie with the reading/parsing of the CSV; writing/creating is more straightforward.

I shall not re-invent the wheel, here's a sample: A simple CSV generator from Dataset in C#

o.k.w