“第0行”在 dotNET 堆栈跟踪中
我收到一个错误报告,其中堆栈跟踪的顶部类似于:
System.NullReferenceException: <...> at MyApplication.MyType.SomeMethod(String arg) in MyType.cs:line 0
要点是,行号为 0
。什么可能导致这种堆栈跟踪行为?
I got an error report, where the top of the stack trace was similar to:
System.NullReferenceException: <...> at MyApplication.MyType.SomeMethod(String arg) in MyType.cs:line 0
The point is, that the line number is 0
. What could cause such stack-trace behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据这个问题,这可能是由于内联造成的。你开启优化了吗?
According to this question, it could be due to inlining. Have you got optimisations switched on?