如何使用带有静态类型的 using 指令
How to use using directive with static type
在 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
}
}
}
Visual Studio 2013 或 C# 5.0 不支持。这是一个 C# 6.0 特性。
在 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
}
}
}
Visual Studio 2013 或 C# 5.0 不支持。这是一个 C# 6.0 特性。