A
angus
Dear All,
Are there any library, in .net to write/read csv file?
Thank you
Regards,
Angus
Are there any library, in .net to write/read csv file?
Thank you
Regards,
Angus
angus said:Dear All,
Are there any library, in .net to write/read csv file?
angus said:"Hello, World",Foo,Bar
you can easily implement the required functionality by reading the CSV file
line by line and calling String.Split() per line.
In your example, if i call
String.Split(",")
then,
Hello
World
Foo
Bar
will be return, instead of
Hello, World
Foo
Bar
am i right?
angus said:"Hello, World",Foo,Bar
you can easily implement the required functionality by reading the
CSV file line by line and calling String.Split() per line.
In your example, if i call
String.Split(",")
then,
Hello
World
Foo
Bar
will be return, instead of
Hello, World
Foo
Bar
am i right?