是否有设置可以显示在 Visual Studio 中调试期间加载的程序集?
我相信 Visual Studio 中有一个设置(或设置组合),允许您在“立即窗口”(或“输出窗口”,我不记得是哪个)中查看调试时加载的程序集的时间戳和名称。我曾经打开过这个功能,因为它对于查找性能问题区域非常有用。然而遗憾的是,当 VS 最近决定无缘无故地取消停靠我的所有窗口时,我不得不重置我的 VS 设置,但现在已经丢失了。
我一辈子都找不到我打开的是哪个设置。
任何帮助表示赞赏。
I believe there is a setting (or combination of settings) in Visual Studio that allow you to see in the Immediate Window (or Output Window, I can't remember which), the timestamp and name of an assembly as it is loaded while debugging. I used to have this switched on as it is very useful for finding performance issue areas. Sadly however, when VS recently decided to undock all my windows for no good reason, I had to reset my VS settings and have now lost this.
I can't find for the life of me which setting it was that I had switched on.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了在输出窗口中读取调试输出消息之外,您还可以使用模块窗口(至少在 Visual Studio 2013 中),它为您提供了一个很好的可搜索的已加载模块列表,其中包含各种附加详细信息:
调试->窗口 ->模块
Apart from reading Debug output messages in Output window, you can also use Modules Window (at least in Visual Studio 2013) which gives you a nice searchable list of loaded modules with various additional details:
Debug -> Windows -> Modules
如有必要,在“输出”窗口中,将“显示输出”组合更改为“调试”。右键单击窗口并勾选“模块加载消息”。以及您可能想看到的任何其他内容。
In the Output window, change the "Show output from" combo to Debug if necessary. Right-click the window and tick "Module load messages". And any others you might want to see.