1

我有类似的代码:

Using conn As OdbcConnection = getNewConnection()

'' Some code

If breakFlag Then
     canExit = True
     GoTo exitUpdate
End If

exitUpdate:
End Using

我想摆脱 GOTO 语句。
因为有 ExitUsing 命令会很方便,但我们没有。

这是在类似情况下退出使用块的好方法还是我必须以不同的方式设计我的代码?

4

1 回答 1

2
Using conn As OdbcConnection = getNewConnection()
    '' Some code

    If breakFlag Then
         canExit = True
         ' remove this: GoTo exitUpdate
    ELSE
        ' here place the rest of your logic that would execute when breakflag = false
    End If
End Using
于 2013-11-04T13:23:49.247 回答