I am looping through every row in a datatable:
foreach (DataRow row in dt.Rows) {}
I would like to get the index of the current row within
int index = dt.Rows.IndexOf(row);
But you're probably better off using a for loop instead of foreach.