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?
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?
Take a look at this: http://www.codeproject.com/KB/aspnet/ExportClassLibrary.aspx
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#