I have Visual Studio 2010 installed. I would like to know if it is possible to use the features of version 6.0 of C # in my IDE
I have Visual Studio 2010 installed. I would like to know if it is possible to use the features of version 6.0 of C # in my IDE
Unfortunately you will not be able to use the features of C # 6 in VS 2010. If it were at least VS 2012.
Follow the evolution of the language
async
main, tuple member name inference, default expression, pattern match with generics
.
C # 7 - > VS2017 || .NET Core 1.0 and later
Main: tuples, ref locals and ref return, pattern matching (including pattern-based switching instructions), out
parameter declarations, local functions, binary literals, asynchronous arbitrary returns and digit separators.
C # 6 - > VS2015 .NET 4.6 || .NET Core 1.0
await
on catch
and finally
, Add
extension method on collection initiators. >
The following are the main features that were introduced in earlier versions of C # and Visual Studio .NET.
C # 5 - > VS2013
C # 5 - > VS2012 .NET 4.5 (4.7)
To direct to the .NET Framework 4.7 in Visual Studio 2012 or later, install the Microsoft .NET Framework Developer Pack 4.7 .
C # 4 - > VS2010 .NET 4
C # 3 - > VS2008 .NET 3.5
C # 2 - > VS2005 .NET 2.0
C # 1.1 - > VS2003
C # 1 - > VS2002 .NET 1.0