Visual Studio 2008像Eclipse一样自动添加命名空间
VS2008 是否具有类似于 Eclipse 的功能,可以自动为未定义的名称空间添加导入声明?
Does VS2008 have a feature akin to Eclipse's ability to automatically add import declarations for undefined namespaces?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您有对包含命名空间的程序集的引用,只需浏览(或选择)您想要添加其命名空间的类型,然后按 CTRL + 。它将添加命名空间,
如下所示:
alt text http://img197 .imageshack.us/img197/6976/91301094.png
if you have a refrence to the assembly that contains the namespace just go over(or select) the type you want add its namespace then CTRL + . and it will add the namespace
this is what it looks like :
alt text http://img197.imageshack.us/img197/6976/91301094.png
VS 将帮助您解析对您尚未包含的命名空间中定义的类型的引用。右键单击类名,选择“解析”,然后选择一个选项。
VS will help you resolve references to types defined in namespaces that you haven't included. Right-click on a class name, select "resolve", and pick an option.
不幸的是,正如 David 提到的,没有像 Eclipse 那样的方法。不过还有其他插件,例如 Resharper 或 CodeRush 在这些任务中进一步支持您。
As David mentioned there is no way like in Eclipse, unfortunately. Additional plugins however, like Resharper or CodeRush support you further in these tasks.