If I have a 2D array, e.g.
Dim array(10,10)
and I use a for each loop on it, e.g.
For each i in array
In which order does it loop?
Will it loop like this?
(0,0)
(0,1)
(0,2)
...
(1,0)
(1,1)
Dim array(10,10)
and I use a for each loop on it, e.g.
For each i in array
In which order does it loop?
Will it loop like this?
(0,0)
(0,1)
(0,2)
...
(1,0)
(1,1)