As of July 2022, the most recent stable version of the language is C# 10.0, which was released in 2021 in . NET 6.0.
C# is partly based on C/C++, but also on Java and Pascal (Delphi). Like Java, C# is an object oriented language, while C++ and Pascal are procedural languages with added capability for object orientation.
These are the versions of C# known about at the time of this writing:
Dispose
on IEnumerator
s which implemented IDisposable
. A few other small features.var
), and query expressionsdynamic
), delegate and interface generic variance, more COM support, named arguments, tuple data type and optional parametersawait
in catch
and finally
, extension Add
methods in collection initializers.out
parameter declarations, local functions, binary literals, digit separators, and arbitrary async returns.unmanaged
generic type constraints. ref
reassignment. Unsafe improvements: stackalloc
initialization, unpinned indexed fixed
buffers, custom fixed
statements. Improved overloading resolution. Expression variables in initializers and queries. ==
and !=
defined for tuples. Auto-properties' backing fields can now be targeted by attributes.new
expressions, target typed ??
and ?
), and covariant returns. Minor features: relax ordering of ref
and partial
modifiers, parameter null checking, lambda discard parameters, native int
s, attributes on local functions, function pointers, static lambdas, extension GetEnumerator
, module initializers, and extending partial.using
directives, file-scoped namespace declarations, extended property patterns, const interpolated strings, mixed assignment and declaration in deconstruction, async method builders (via attributes) for individual methods, the CallerArgumentExpression
attribute for parameters, enhanced #line
pragmas.What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5?
There is no such thing as C# 3.5 - the cause of confusion here is that the C# 3.0 is present in .NET 3.5. The language and framework are versioned independently, however - as is the CLR, which is at version 2.0 for .NET 2.0 through 3.5, .NET 4 introducing CLR 4.0, service packs notwithstanding. The CLR in .NET 4.5 has various improvements, but the versioning is unclear: in some places it may be referred to as CLR 4.5 (this MSDN page used to refer to it that way, for example), but the Environment.Version
property still reports 4.0.xxx.
As of May 3, 2017, the C# Language Team created a history of C# versions and features on their GitHub repository: Features Added in C# Language Versions. There is also a page that tracks upcoming and recently implemented language features.
This is the same as most answers here, but tabularized for ease, and it has Visual Studio and .NET versions for completeness.
C# version | VS version | .NET version | CLR version | Release date |
---|---|---|---|---|
1.0 | 2002 | 1.0 | 1.0 | Feb 2002 |
1.2 | 2003 | 1.1 | 1.1 | Apr 2003 |
2.0 | 2005 | 2.0 | 2.0 | Nov 2005 |
3.0 | 2.0 | Nov 2006 | ||
3.0 | 2008 | 3.5 | 2.0 | Nov 2007 |
4.0 | 2010 | 4.0 | 4 | Apr 2010 |
5.0 | 2012 | 4.5 | 4 | Aug 2012 |
5.0 | 2013 | 4.5.1 | 4 | Oct 2013 |
4.5.2 | 4 | May 2014 | ||
6.0 | 2015 | 4.6 | 4 | Jul 2015 |
4.6.1 | 4 | Nov 2015 | ||
4.6.2 | 4 | Aug 2016 | ||
7.0 | 2017 | Mar 2017 | ||
4.7 | 4 | May 2017 | ||
7.1 | 2017 (v15.3) | Aug 2017 | ||
4.7.1 | 4 | Oct 2017 | ||
7.2 | 2017 (v15.5) | Dec 2017 | ||
4.7.2 | 4 | Apr 2018 | ||
7.3 | 2017 (v15.7) | May 2018 | ||
8.0 | 2019 | 4.8 | 4 | Apr 2019 |
9.0 | 2019 (v16.8) | 5.0* | ** | Nov 2020 |
C# version | VS version | .NET version | Release date | End of Support |
---|---|---|---|---|
2015 Update 3 | .NET Core 1.0 | Jun 2016 | Jun 2019 | |
.NET Core 1.1 | Nov 2016 | Jun 2019 | ||
7.1 | 2017 (v15.3) | .NET Core 2.0 | Aug 2017 | Oct 2018 |
7.3 | 2017 (v15.7) | .NET Core 2.1 | May 2018 | Aug 2021 |
.NET Core 2.2 | Dec 2018 | Dec 2019 | ||
2019 (v16.3) | .NET Core 3.0 | Sep 2019 | Mar 2020 | |
2019 (v16.4) | .NET Core 3.1 | Dec 2019 | Dec 2022 | |
9.0 | 2019 (v16.8) | .NET 5 | Nov 2020 | Feb 2022 |
10.0 | 2022 | .NET 6 | Nov 2021 | Nov 2024 |
.NET 7 | Nov 2022 | Feb 2023 | ||
.NET 8 | Nov 2023 | Nov 2026 |
* - .NET 5.0 is not a newer version of .NET framework but .NET Core 3. Starting from .NET 5.0, there are no newer versions of .NET full framework.
** - There are no separate CLR (CoreCLR) versions for .NET Core. Whatever is the .NET Core version is the CoreCLR version. So not mentioning it.
Note: .NET development is pretty much independent of VS these days, there is no correlation between versions of each.
Refer to ".NET Framework versions and dependencies" and ".NET release cadence" for more.
The biggest problem when dealing with C#'s version numbers is the fact that it is not tied to a version of the .NET Framework, which it appears to be due to the synchronized releases between Visual Studio and the .NET Framework.
The version of C# is actually bound to the compiler, not the framework. For instance, in Visual Studio 2008 you can write C# 3.0 and target .NET Framework 2.0, 3.0 and 3.5. The C# 3.0 nomenclature describes the version of the code syntax and supported features in the same way that ANSI C89, C90, and C99 describe the code syntax and features for C.
Take a look at Mono, and you will see that Mono 2.0 (mostly implemented version 2.0 of the .NET Framework from the ECMA specifications) supports the C# 3.0 syntax and features.
C# 1.0 with Visual Studio .NET
C# 2.0 with Visual Studio 2005
C# 3.0 with Visual Studio 2008
C# 4.0 with Visual Studio 2010
C# 5.0 with Visual Studio 2012
C# 6.0 with Visual Studio 2015
C# 7.0 with Visual Studio 2017
C# 8.0 with Visual Studio 2019
C# 9.0 with Visual Studio 2019
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With