vote up 1 vote down star
1

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?

flag

73% accept rate
Porting your Java code to C# could be fun :) – o.k.w Nov 3 at 11:55
Fair point! But I probably won't have time :-( – AJM Nov 3 at 12:11

2 Answers

vote up 1 vote down

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#

link|flag
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.