I have several Python scripts that I wrote some time ago to do some data processing. I need to โportโ some of these scripts to C #.
Python provides a CSV module that makes it easy to import CSV data from a file into a dictionary. I want to have the same functionality in my library, but since I'm new to C #, I decided to come here to ask for a best practice method for importing CSV data into a DataTable.
Am I rolling back on my own or is there a CSV ala Python module?
source share