所以我在 Vb6 中有如下内容;
Select case Case
case "Case0"
...
case "Case1"
if Condition Then
Exit Select
End If
*Perform action*
case "Case2"
...
End Select
但由于某种原因,我Exit Select
抛出了错误Expected: Do or For or Sub or Function or Property
。我知道,不漂亮。我应该使用别的东西吗?我可以只使用if
语句而不是提前退出案例,但这需要重复的代码,我想避免这种情况。任何帮助将非常感激。
更新
尝试更改Exit Select
为End Select
并得到错误End Select without Select Case
。它肯定在 aSelect Case
和 a之内End Select
。