在 Visual Studio 中,是否有一种更简单的方法可以通过 PDB 开源代码,然后从该库单步执行函数调用?
我希望能够浏览源代码并设置调试点,而不必寻找打开文件的方法。我知道您可以打开原始源代码并分离/重新连接调试器,但这在每次运行时都是很痛苦的。
I want to be able to browse the source and set a debug point without having to hunt for a way to get the file open. I know you can open the original source and detach/reattach the debugger but that is a pain to do every time you run.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您牢记要调试的方法的名称,则可以添加新断点 (Ctrl+B) 并键入“MyClassName.MyMethodName”(回车)。这将在该方法的开头放置一个断点,当您运行时,一旦命中,文件就会打开。
If you remember the name of the method you want to debug by heart, you can Add New Breakpoint (Ctrl+B) and type "MyClassName.MyMethodName" (enter). That will put a breakpoint in the beginning of that method, and when you run, as soon as it's hit, the file will open.