我可以正确调试使用“AssemblyResolve”加载的程序集吗?事件?

发布于 2024-09-02 21:07:18 字数 257 浏览 4 评论 0原文

我正在通过隐藏另一个文件夹中的可执行文件的依赖关系来尝试 AppDomain 的“AssemblyResolve”事件。程序集似乎加载并执行得很好,但是调试似乎很疯狂,有时它会遇到我的断点,有时不会,有时它会两次遇到相同的代码(这似乎很荒谬,但我确信代码只执行一次)。我不明白调试器是如何工作的,但我猜它与 PDB 文件有关。有人知道可能发生什么以及我该如何解决它吗?

编辑: 让我补充一点,我正在使用反射调用动态加载的程序集上的方法,有时我要跳过的方法会引发仅在稍后弹出的异常。

I'm experimenting with the AppDomain's 'AssemblyResolve' event by hidding the depedencies for an executable file in another folder. The assemblies seem to beloading and executing fine, however debugging seems to be crazy, sometimes it hits my break points, sometimes it doesnt , and sometimes it hits the same code twice(It seems absurd but I'm sure the code is executing only once). I don't understanding how debuggers works but I guess it has something to do with the PDB files. Anyone got an idea of what might be happening and how can I fix it?

Edit:
Let me add that I'm calling methods on the dynamically loaded assemblies using reflection, sometimes the method I'm stepping over throws an exception that only pops at a later time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生生漫 2024-09-09 21:07:18

调试 + Windows + 模块,在列表中找到您的 DLL。右键单击它并选择“符号加载信息”。它会向您显示在哪里找到 .pdb 文件。

顺便说一句,找到错误的 .pdb 并不能很好地解释您的麻烦。也许您应该发布到 connect.microsoft.com。然而,给他们一个良好的再现是至关重要的。

Debug + Windows + Modules, find your DLL in the list. Right-click it and choose "Symbol Load Information". It will show you where it found the .pdb file.

Finding the wrong .pdb is not a great explanation for your troubles btw. Maybe you ought to post to connect.microsoft.com. Giving them a good repro would be essential however.

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