How do I get out of nested for or loop in vb.net?
I tried using exit for but it jumped or breaked only one for loop only.
How can I make it for the following
If I want to exit a for-to loop, I just set the index beyond the limit:
For i = 1 To max some code if this(i) = 25 Then i = max + 1 some more code... Next`
Poppa.