Visual Studio 是否提供了一种方法来搜索每个可用namespace
的建议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
}
}
}