Just moved over to the VB team here at work.
Quick easy one for my 1st question.
What is the equivalent keyword to break in VB, i.e., to exit a loop early but not the method?
Cheers!
|
|
|
|
|
|
|
In both VB6 and VB.Net you would use:
or
or
... depending on the loop type. |
|||
|
|
|
Exit [construct], and intelisense will tell you which one(s) are valid in a particular place. |
||
|
|
|
|
Thanks Joel for cleaning that up ;) |
||
|
|