I'm using the LumenWorks CsvReader to parse a file with the following structure.
heading1,heading2,heading3
data1,data2,data3,data4,data5
The code detects that I've got three fields per row because I've got three headings. It happily allows me to parse the first row and retrieve data1, data2, and data3, but i can't access data4 or data5. At the very least, I'd like to be able to detect additional fields in the data rows. Does anyone know if this is possible?
Thanks!