Hi all,
I'm using C# 2005 and the CSVreader class, all works well apart from when the CSV file contains an empty row at the end:
Example:
1,2,3,4,5
2,3,5,6,7
,,,,
My program errors as there are no values here, the problem is that not all columns are contain a value so the 2 rows below would be valid.
1,2,,4,5
2,,5,6,7
but an empty row such containing ,,,, would not. A final hurdle is I don't know for sure how many columns there will be.
How would you suggest I test for an empty row?
Thanks