Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果出现问题,我不喜欢 VB.NET 在操作上静默失败的事实:
Dim n(10) As String n(11) = "blah"
我不想用 Try/Catch/Finally 来处理这种情况,那将是矫枉过正。在开发期间测试我的应用程序时,我会偶然发现这种情况。
但是 VB.NET 只是跳过这个错误的事实有点烦人。我可以更改 IDE 以使其在此行中中断吗?
非常感谢!
单击调试、异常,然后选中所有复选框。
无论何时在任何地方抛出任何异常,调试器都不会中断,即使随后对其进行了处理。