Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚搬到这里工作的 Visual Basic 团队。
Visual Basic中的等效关键字是什么break,即提前退出循环而不是方法?
break
在 Visual Basic 6.0 和VB.NET中,您将使用:
Exit For
Wend
Exit Do
取决于循环类型。有关更多详细信息,请参阅退出声明。
如果您在函数的 Sub 中并且想要退出它,您可以使用:
Exit Sub
或者
Exit Function
Exit[construct],智能感知会告诉你哪些(哪些)在特定的地方是有效的。
Exit