将本机和托管调试器附加到单个进程?
是否可以在本机中附加一次,然后打开第二个 VStudio 窗口并在托管模式下附加?
Is it possible to attach once in native, then open second VStudio window and attach in managed mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以以非侵入方式附加 WinDbg,这样即使已经附加了另一个调试器(例如 VS),您也可以附加 WinDbg。弹出窗口中有一个用于附加处理的复选框。
但是,这样做将不允许您从 WinDbg 控制应用程序,因为只有一个调试器可以控制被调试对象。您仍然可以查看内存、线程等(并且可以加载 SOS/PSSCOR2 来检查托管数据)。
You can attach WinDbg as non-invasive, which allows you to attach even if another debugger such as VS is already attached. There's a check-box in the popup for Attach to process.
However, doing so will not allow you to control the application from WinDbg as only one debugger may control the debuggee. You can still view memory, threads, etc. (and you can load SOS/PSSCOR2 to inspect managed data).
您只能在 .NET 4.0 中执行此操作
You can only do this in .NET 4.0