【发布时间】:2011-03-22 22:50:46
【问题描述】:
我想知道是否有办法让程序在抛出异常后继续运行。例如:
Try
line 1
line 2
line 3
line 4 ' (here the exception is thrown and jumps to the catch)
line 5 ' <-- I would like the program to continue its execution, logging the error
line 6
Catch ex as Exception
log(ex.tostring)
End Try
【问题讨论】: