如何修复 Visual Studio 2008 for VB.NET 上的导入语句
我熟悉通过 Ctrl- 修复导入的 C# 方法。 但是对于 Visual Basic 项目如何执行此操作?
另外Visual Basic似乎没有C#的[组织使用]功能。如果有的话请帮忙。
I am familiar with c# way of fixing the import viaCtrl-。 but how do you do this for visual basic project?
Also does visual basic does not seem to have the [Organize Using] feature for c#. If there is one can you please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,VB.NET IDE 中不存在可用于 C# 的重构功能。
它们不仅仅是隐藏在某个地方或以不同的名称命名。当 C# 团队添加这些东西时,VB.NET 团队正在研究自动后台编译之类的事情。我预计它们会在未来的版本中添加,但请不要屏住呼吸。
如果需要,您必须安装第三方扩展,例如 Resharper。
但 Ctrl+. 键盘快捷键仍然可以正常工作。我几乎肯定 Intellisense 仍然会建议在需要时导入命名空间,就像 C# IDE 一样。
No, the refactoring features available for C# do not exist in the VB.NET IDE.
They're not simply hidden somewhere or named something different. While the C# team was adding this stuff in, the VB.NET team was working on things like automatic background compilation. I expect they'll be added in a future version, but don't hold your breath.
You will have to install a third-party extension like Resharper if you require them.
But the Ctrl+. keyboard shortcut still works fine. I'm nearly positive that Intellisense will still suggest importing namespaces when required, just like the C# IDE.