我的项目包含1000行代码。
我想查看项目运行期间是否存在任何错误。
以下代码对此有用吗?
Public Class Form1
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Try
'My 1000 lines code here
'....................
'....................
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
End Class
答案 0 :(得分:0)
那很好......
我通常会尝试将各个部分备份到各个部分并捕获不同的错误以执行不同的操作
Try
Catch ioexp As IO.FileNotFoundException
Catch ex As Exception
End Try