当前位置: 代码迷 >> VB Dotnet >> vb.net try catch 有关问题
  详细解决方案

vb.net try catch 有关问题

热度:106   发布时间:2016-04-25 02:12:24.0
vb.net try catch 问题
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
这样应该会有异常,因为你的代码是正确的。
------解决方案--------------------
确实楼主的代码是正确的!
------解决方案--------------------
引用:
但是始终无法捕获异常,不知道为什么


没有错误捕获什么异常,

不然你就故意写错一下,或是断点调试的时候,用鼠标直接把运行箭头移动到异常哪……