如何在 Visual Studio 调试器中找到当前 StackFrame 的 Column Line?
即使 LineNumber 确实存在,EnvDTE.StackFrame2 接口中也没有 ColumnNumber 属性:http://msdn.microsoft.com/en-us/library/cc701201(v=VS.90).aspx;
IL offset也可以,我也可以做IL offset->我自己使用 pdb 进行列/行转换。
There is no ColumnNumber property in the EnvDTE.StackFrame2 interface, even though LineNumber does exist: http://msdn.microsoft.com/en-us/library/cc701201(v=VS.90).aspx;
IL offset will also do, I could also do the IL offset-> column/line conversion using the pdbs myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。我在 此 VS 调试器论坛主题。
Yes, it's possible. I got my answer on this VS Debugger forum thread.