如何判断异常是来自dll

发布于 2024-12-05 04:46:33 字数 252 浏览 2 评论 0原文

如何确定来自 dll

Main.exe

-subdll1.dll //dll 错误的异常在此发生,如何找到此 dll 发生的错误。

-subdll2.dll

就像这个

委托(对象发送者,UnhandledExceptionEventArgs e) {

    e.ExceptionSourceAssebmly like this

}

How can I determine the exception which comes from the dll

Main.exe

-subdll1.dll //dll error occurs at this, how can I find the error occurred from this dll.

-subdll2.dll

like this

delegate(object sender, UnhandledExceptionEventArgs e)
{

    e.ExceptionSourceAssebmly like this

}

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

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

发布评论

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

评论(1

我不会写诗 2024-12-12 04:46:33

要查看定义异常的位置,您需要查看异常的顶部 堆栈跟踪

Exception.TargetSite < em>可能直接包含此信息(作为 MethodBase),但文档指出它不能跨 AppDomain 边界工作。

To see where an exception is defined you'll need to look at the top of the exception's stack trace.

Exception.TargetSite might contain this information directly (as a MethodBase), but the documentation notes it doesn't work across AppDomain boundaries.

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