0

在 C# 中,如果你想从函数中返回,你可以这样做:

If (Something == True)
{
   //Message Box
   Return;
}
Else
{
   // Do nothing
}

VB 6 如何做到这一点?

4

1 回答 1

7

在 VB6 中,您编写

FunctionName = ReturnValue

是的,认真的。

要停止执行函数,请使用Exit Function(或Exit Sub

于 2013-08-07T16:47:31.693 回答