Visual Studio 中的 MSDN 链接
我正在寻找一个插件或方法,可以简单地从 .Net 代码中的任何命名空间、类型、方法、属性等转到通过上下文菜单项或类似超链接的机制覆盖它的 MSDN 页面。 有谁知道有什么可以做到这一点?
右键单击时的“转到定义”选项几乎涵盖了这一点,但它工作得不够好 - 不支持命名空间,并且您经常会看到一个丑陋的元数据页面。 我仍在使用 vs2005,所以如果 vs2008 在这方面更好,我想知道。
I'm looking for a plugin or way to simply go from any namespace, type, method, property, etc in my .Net code to the MSDN page that covers it via a context menu item or hyperlink-like mechanism. Does anyone know of anything that will do that?
The "Go to Definition" option when you right click almost covers this, but it doesn't quite work well enough - no support for namespaces and you often end up at an ugly metadata page. I'm still on vs2005, so if vs2008 is better at this I'd like to know about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试过F1吗? 这将自动打开相应方法或对象的帮助。 不确定这是否适用于命名空间。
Have you tried F1. This will automatically open the help to the appropriate method or object. Not sure if this works for namespaces.
除了使用 F1(这并不总是有效)之外,我还没有找到 VS 的加载项来执行此操作,我还有另一种快速方法。
我使用 Launchy(来自 launchy.net)并设置 Weby 插件,这样我就可以快速进行 MSDN 搜索。 因此,如果我正在寻找 String.Format,我的键盘序列(来自 VS 或其他任何地方)将是这样的:
alt-space
微软软件定义网络
String.Format
让我直接进行 MSDN 搜索,通常第一个列表就是我要查找的内容。 这不是一个完美的解决方案,但快速的互联网连接和仅键盘的方法对我来说效果很好。
Besides using F1 (which doesn't always work) I haven't found an add-in for VS to do this, I have another quick way around it.
I use Launchy (from launchy.net) and setup the Weby plug-in so I can quickly do MSDN searches. So if I'm looking for String.Format, my keyboard only sequence (from VS, or anywhere else) would be this:
alt-space
MSDN
String.Format
that brings me right to an MSDN search, where usually the first listing is what I'm looking for. It's not a perfect solution, but having a fast internet connection and the keyboard only approach works well for me.