J
John Dann
If I need to iterate through all the field values in a dataset, is
there any preference for organising the outer iterations by row or by
column . ie should I do (in VB.Net):
For i as integer = 1 to table(0).columns.count
For j as integer = 1 to table(0).rows.count
.........
Next j
Next i
or swap columns or rows, or is it immaterial?
TIA
JGD
there any preference for organising the outer iterations by row or by
column . ie should I do (in VB.Net):
For i as integer = 1 to table(0).columns.count
For j as integer = 1 to table(0).rows.count
.........
Next j
Next i
or swap columns or rows, or is it immaterial?
TIA
JGD