Suppose there is a data.csv file and it looks like this :
Ann 300 700 1000
Zoe 2 4 6
Ian 100 200 300
Zak 90 90 180
I need to grab values for each cell and store them in a list so that when I print them it looks like so:
list.ForEach(Console.Write);
Ann 300 700 1000 Zoe 2 4 6 Ian 100 200 300 Zak 90 90 180
I tried looking for answers but I am struggling to read in data and tokenize each cell element in the csv.