Is there a difference between these?
For i = 0 To Something.Length - 1
'do something
Next
For i = 0 To Something.Length - 1
'do something
Next i
|
Is there a difference between these?
|
|||
|
|
|
It is only for readability:
|
|||
|
|
|
Nope. There is no difference. Even with nested loops there is no difference because nested for-loops cannot overlap. |
|||
|
|