vote up 4 vote down star

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!

flag

3 Answers

vote up 17 vote down check

In both VB6 and VB.Net you would use:

Exit For

or

Exit While

or

Exit Do

... depending on the loop type.

link|flag
Also on a related note, "Continue" will allow you to skip to the next iteration in a for loop. – StingyJack Mar 3 at 17:08
vote up 1 vote down

Exit [construct], and intelisense will tell you which one(s) are valid in a particular place.

link|flag
vote up 0 vote down

Thanks Joel for cleaning that up ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.