im having trouble with the santax of the for loop in C#
in vb.net it would be something like
For index = 0 To table.Columns.Count - 1 Step 1
some stuff
Next
in c#
im getting stuck
/code
int index = table.columns.count -1;
For index ( how do i tell it to step down by -1 till 0)
{
some stuff
}
