I have a tab delimited file with some columns and rows for example: some rows might not have value for some columns. What we know is that the \"order\" doe
Just read all lines of your file, then split on tab delimiter, to gain access to each column.
var fileArray = File.ReadAllLines(myLocation); for(int i=0;i