如何判断异常是来自dll
如何确定来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要查看定义异常的位置,您需要查看异常的顶部 堆栈跟踪。
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 aMethodBase
), but the documentation notes it doesn't work across AppDomain boundaries.