Dim aaa As Boolean = True
Try
aaa = False
Catch e As Exception
ModelState.AddModelError("", "错误")
End Try
怎么没有捕获到异常?
------解决方案--------------------
.Dim aaa as integer
Try
aaa =1/0
Catch e As Exception
ModelState.AddModelError("", "错误")
End Try
这样应该会有异常,因为你的代码是正确的。
------解决方案--------------------
确实楼主的代码是正确的!
------解决方案--------------------
没有错误捕获什么异常,
不然你就故意写错一下,或是断点调试的时候,用鼠标直接把运行箭头移动到异常哪……