真的不知道为什么这个和其他类似的代码片段在我的MVC3应用程序中不起作用。
Try
Dim x As Integer = 0
Dim b As Integer = 15 / x
Catch ex As Exception
Debug.WriteLine("aaa" & ex.Message)
End Try
简单地说ex就是没有。我试过调试,调试器进入catch子句,VS弹出窗口显示正确的异常值...但是鼠标悬停ex显示它什么都没有。
debug immediate window显示正确的消息“aaaOverflow arythmetic operation ....”
我真的疯了!
答案 0 :(得分:1)
有一个名为Err的对象。 Err.Description包含消息错误。我有同样的问题,Err已保存