在所有名称空间中搜索名称

时间:2013-04-03 16:24:59

标签: c# .net visual-studio visual-studio-2012

namespace时,Visual Studio是否提供了搜索每个可用The type or namespace name '____' could not be found的建议的方法?

我经常忘记用于特定对象的namespace

例如,下面的代码无法编译,因为我省略了using System.IO;

using System;
namespace myTest {
    class Program {
        static void Main(string[] args) {
            Stream fs = new Stream(); // <-- ERROR
        }
    }
}

3 个答案:

答案 0 :(得分:4)

CTRL + 可以选择添加正确的using语句(如果程序集已知)或者为成员添加相关的前缀命名空间。

答案 1 :(得分:2)

单击位于不同命名空间的类,您应该在角落看到一个蓝色方块

enter image description here

将鼠标移动到该蓝色方块,并显示一个图标。单击该图标以获得选项列表,其中一个应该是添加适当的命名空间。

enter image description here

答案 2 :(得分:1)

如果将鼠标悬停在引用库中的未知类上,它将提供浮动助手。 Helper会建议添加命名空间。