Hello, i have try this library :
Dim parser As CSVParser
parser.Initialize
Dim table As List = parser.Parse(File.ReadString("", selected(i)), ",", False)
For Each row() As String In table
Log(row(2))
Next
Its return in order at my csv file the value:
NAME
Michael
Of i can read only the value and not the header ?
Sorry, i am newbye
Dim parser As CSVParser
parser.Initialize
Dim table As List = parser.Parse(File.ReadString("", selected(i)), ",", False)
For Each row() As String In table
Log(row(2))
Next
Its return in order at my csv file the value:
NAME
Michael
Of i can read only the value and not the header ?
Sorry, i am newbye