我有类似的代码:
Using conn As OdbcConnection = getNewConnection()
'' Some code
If breakFlag Then
canExit = True
GoTo exitUpdate
End If
exitUpdate:
End Using
我想摆脱 GOTO 语句。
因为有 ExitUsing 命令会很方便,但我们没有。
这是在类似情况下退出使用块的好方法还是我必须以不同的方式设计我的代码?
我有类似的代码:
Using conn As OdbcConnection = getNewConnection()
'' Some code
If breakFlag Then
canExit = True
GoTo exitUpdate
End If
exitUpdate:
End Using
我想摆脱 GOTO 语句。
因为有 ExitUsing 命令会很方便,但我们没有。
这是在类似情况下退出使用块的好方法还是我必须以不同的方式设计我的代码?