Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 47 down vote accepted

In both Visual Basic 6.0 and VB.NET you would use:

Exit For 

or

Exit While 

or

Exit Do

... depending on the loop type.

share|improve this answer
3  
Also on a related note, "Continue" will allow you to skip to the next iteration in a for loop. – StingyJack Mar 3 '09 at 17:08
2  
@StingyJack Worth noting that Continue is only available in VB.Net, not VB6 – MarkJ Sep 19 '11 at 10:47

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

share|improve this answer

In case you're inside a Sub of Function and you want to exit it, you can use :

  Exit Sub

or

 Exit Function 
share|improve this answer
Useful answer, but not really in the context of the question as that's what they explicitly said they didn't want to do. – Deanna Apr 16 at 10:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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