I've got a bunch of CSVs with no header rows.
When I do
var dt = DataTable.New.ReadCsv("source-file.csv");
foreach (var row in dt.Rows)
{
var idAsString = row.Values[0];
}
the first row is skipped. What's the best way to avoid skipping the first row if I know the CSV has no headers?
Thanks