If you have a for loop such as:
For Each s As String In stringList ..do stuff.. Next
is there some sort of (hidden) iterator or do I have to add an external integer to keep count:
Dim i As Integer For Each s As String In stringList ..do stuff.. i += 1 Next
There is no hidden iterator, you would have to use the code in your second example or revert back to a regular
forloop.