在MSDN here的示例中,它解释了如何将using指令与静态类型一起使用。
但是,当我尝试使用以下代码模仿示例时,我收到错误。
我做错了什么?
namespace ConsoleApplication1
{
// intellisense syntax errors show up in this line
using static System.Console;
class Program
{
static void Main(string[] args)
{
// do something
}
}
}
答案 0 :(得分:5)
Visual Studio 2013或C#5.0不支持。这是一个C#6.0功能。