远程调试 Visual Studio 2010 可以使用断点、监视和单步执行吗?
目前,我在本地调试 C# 应用程序,并使用监视、断点和命令(例如单步执行和调试检查器)。
使用另一台计算机设置远程调试,如下所述: http://msdn.microsoft.com /en-us/library/bt727f1t.aspx
是否可以查看远程应用程序的源代码并像在本地一样逐步执行它?
Currently I debug my C# application locally and use watch, breakpoint and commands like step into and the debug inspector.
setup remote debugging with another machine as described here: http://msdn.microsoft.com/en-us/library/bt727f1t.aspx
Is it possible to see the source code of remote application and go through it step-by-step as one can do locally?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。只需确保您的符号文件(您的 .PDB 文件)与您的应用程序一起远程部署。
Yes, you can. Just make sure that your symbol files (your .PDB files) are deployed remotely with your application.
是的。连接到远程进程与连接到本地进程是一样的。
Yes. Attaching to a remote process is just the same as attaching to a local process.