我正要重构以下 VB6 代码(由其他人编写)。
Public Function GetValue(ID As Long) As Boolean
On Error GoTo eh
'' ... DAL Logic...
eh_Exit:
On Error GoTo 0
Exit Function
eh:
Resume eh_Exit
End Function
您认为原作者对标签的意图是eh
什么?
可能只是“呃,发生了什么事?”......
我想让它可读,而不必像现在一样思考它......