在 EnvDTE 的 Debugger.GetExpression 方法中,“UseAutoExpandRules”的作用是什么?确切的意思是?
文档深刻地解释了此参数应该是“如果应该使用自动扩展规则,则为 true;否则为 false。”,但这到底意味着什么?
我在网上似乎找不到任何解释。
The documentation poignantly explains that this parameter should be "true if the auto-expand rules should be used; otherwise, false.", but what does it mean exactly?
I can't seem to find any explanation online.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案 - 参数引用“C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\”下的 autoexp.dat 文件(或 .NET 的 autoexp.cs 等效项),它会自动展开中的项目观察和数据提示显示最重要的项目。
Found the answer - the parameter refers to the autoexp.dat file under "C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\" (or the autoexp.cs equivalent for .NET), which automatically expand items in Watch and DataTips to show the most important items.