在 Visual Studio 中,是否有一种更简单的方法可以通过 PDB 开源代码,然后从该库单步执行函数调用?

发布于 2025-01-05 17:21:36 字数 77 浏览 0 评论 0原文

我希望能够浏览源代码并设置调试点,而不必寻找打开文件的方法。我知道您可以打开原始源代码并分离/重新连接调试器,但这在每次运行时都是很痛苦的。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

A君 2025-01-12 17:21:36

如果您牢记要调试的方法的名称,则可以添加新断点 (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文