I intend to create a program working with CSV files (read and write).
I can easily make my own methods to work with that: collect values, read/write commas, load and save a file. But, is there a ready-to-use tool in .NET to avoid spending my time?
I intend to create a program working with CSV files (read and write).
I can easily make my own methods to work with that: collect values, read/write commas, load and save a file. But, is there a ready-to-use tool in .NET to avoid spending my time?
You can make use of String.Join()
for creating CSV based String and use String.Split()
for creating an array out of CSV data.