调试时,VS2010 中不会出现错误,但如果我从调试文件夹在 VS2010 外部运行程序,则会出现错误

发布于 2024-12-10 18:49:59 字数 185 浏览 0 评论 0原文

我有一个 C# 应用程序,它有一个我无法找到的错误。

当我从调试器中运行应用程序时,不会发生错误,但如果我从 VS2010 外部的调试文件夹中运行应用程序(仍然是应用程序的调试版本),则会出现错误。

错误是“对象未设置为对象的实例”。错误本身不是问题本身,而是为什么在 VS2010 (.NET 4) 中调试时不会发生错误。

I have a C# app which has an error which I cannot locate.

When I run the app from within the debugger, the error does not occur but if I run the app from outside VS2010 in the debug folder (still the debug version of the app) I get the error.

The error is an 'Object not set to an instance of an object'. The error itself is not the issue itself, but why it doesn't happen when debugging in VS2010 (.NET 4).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2024-12-17 18:49:59

如果您已经知道错误发生的位置,则只需在其之前编写一行代码即可启动调试器:

   System.Diagnostics.Debugger.Launch();

If you already know where the error occurs then simply write a one-liner before it to start the debugger:

   System.Diagnostics.Debugger.Launch();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文