如何在VS2010中允许打破'System.NullReferenceException'?

时间:2010-12-17 22:54:58

标签: c# debugging visual-studio-2010 nullreferenceexception break

我有一个VS 2010 C#.NET 4项目。问题是程序在调试期间没有破坏'NullReferenceException'错误。

输出窗口将显示以下内容:

A first chance exception of type 'System.NullReferenceException' occurred in myProgram.exe

...但是调试器将退出该函数并继续运行该程序的其余部分。

如何更改此行为以便调试器在这些异常中中断?

1 个答案:

答案 0 :(得分:40)

转到调试 - >例外 - >搜索NullReferenceException并选中“抛出”复选框。