1

enter image description here

Wondering why the "using static" is not functional in Visual Studio 2013.

zx485
  • 28,498
  • 28
  • 50
  • 59
WinMaker
  • 59
  • 5

2 Answers2

3

You need a minimum of VS 2015 to use c# 6 features.

You also need to ensure that c#6 is enabled in the Language version property of the project.

zaitsman
  • 8,984
  • 6
  • 47
  • 79
0

"using static" feature was introduced in C# 6.0. How to enable C# 6.0 features in Visual Studio 2013 is described here

Community
  • 1
  • 1
Oleg Lukash
  • 291
  • 2
  • 7