相当于“中断”的 VB 关键字

我刚刚转到 VisualBasic 团队工作。

在 VisualBasic 中,与 break等效的关键字是什么,即尽早退出循环而不是退出方法?

135947 次浏览

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

  • Exit For to break from For loop
  • Wend to break from While loop
  • Exit Do to break from Do loop

depending on the loop type. See Exit Statements for more details.

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 :

Exit Sub

or

Exit Function