I have a simple 3 column csv file and i need to exctract only the information from the first column. I was thinking of regular expressions, but i am hoping there is an easier mo
You can use the TextFieldParser class that is in the Microsoft.VisualBasic.FileIO namespace.
Microsoft.VisualBasic.FileIO
It will parse the file and the resulting object can be queried, so you will be able to get the values in the first column.