I just moved over to the Visual Basic team here at work.
What is the equivalent keyword to break in Visual Basic, that is, to exit a loop early but not the method?
|
|
|
In both Visual Basic 6.0 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. |
|||
|
|
|
In case you're inside a Sub of Function and you want to exit it, you can use :
or
|
|||
|