Reputation: 1502985
What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5?
This question is primarily to aid those who are searching for an answer using an incorrect version number, e.g. C# 3.5. The hope is that anyone failing to find an answer with the wrong version number will find this question and then search again with the right version number.
Upvotes: 2915
Views: 436832
Reputation: 31
People are usually mixing up two things. [C# 3.0 & .NET Framework 3.5]
as people describe it previously and provide tables for each c# language version with its compatible visual studio and .net framework.. ::C# 3.0 was the version of the programming language released in 2007, and it came with awesome features like LINQ(to treat with data)
At the same time, there was an update called .NET Framework 3.5 which added tools for Developers.
the confusion because of the .NET Framework 3.5 was released around the same time (after c# 3.0 ) so Some people Mistakly think of it is an C# 3.5, but actually c#3.5 doesn't exist.
It’s just C# 3.0 with extra tools from .NET Framework 3.5.
Upvotes: 1
Reputation: 73253
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 |
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 |
4.8.1 | 4 | Aug 2022 |
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.0 | 2017 | Mar 2017 | ||
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 | ||
8.0 | 2019 | Apr 2019 | ||
2019 (v16.3) | .NET Core 3.0 | Sep 2019 | Mar 2020 | |
2019 (v16.4) | .NET Core 3.1 | Dec 2019 | Dec 2022 | |
9 (†) | 2019 (v16.8) | .NET 5 | Nov 2020 | May 2022 |
10 | 2022 | .NET 6 | Nov 2021 | Nov 2024 |
11 | 2022 (17.4) | .NET 7 | Nov 2022 | May 2024 |
12 | 2022 (17.8) | .NET 8 | Nov 2023 | Nov 2026 |
13 | 2022 (17.12) | .NET 9 | Nov 2024 | May 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 is pretty much independent of VS and compiler versions, there is no correlation between versions of each. The above lists don't imply certain version of .NET are tied to certain C# or VS versions. This is just compiled in their chronological order of their releases (VS/C# and .NET). Some releases happen to be together, hence they sit in the same row.
Refer to ".NET Framework versions and dependencies" and ".NET release cadence" for more.
† The major.minor
versioning scheme became just major
starting with C# 9
Upvotes: 495
Reputation: 1502985
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.Span<char>
on a constant string, extended nameof scope, numeric IntPtr
, UTF-8 string literals, required members, ref
fields and scoped ref
, raw string literals, improved method group conversion to delegate, warning wave 7, generic attributes, newlines in string interpolation expressions, list patternsref readonly
parameters, alias any type, Experimental
attribute, interceptorsLock
type and semantics, new Escape sequence \e
, method group natural type improvements, implicit indexer access in object initializers, ref locals and unsafe contexts in iterators and async methods, ref struct types to can implement interfaces, partial properties and indexers, ref struct types, overload resolution priorityWhat 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.
Upvotes: 3226
Reputation: 667
You can find a list of all the C# language versions on Microsoft's reference.
Upvotes: 4
Reputation: 374
I was looking for a concise history of the .NET, C#, CLR, and Visual Studio versions alongside the key language features.
Since I couldn't find any up-to-date table that contains all the information I needed in one place - I merged details from the Microsoft docs into what I tried to keep a concise table that contains what I was looking for.
It’s available here: https://mantinband.github.io/dotnet-shmotnet/
I probably have some mistakes or missing information so please feel free to open an issue or contribute over here: https://github.com/mantinband/dotnet-shmotnet
Sneak peek:
Upvotes: 3
Reputation:
Version .NET Framework Visual Studio Important Features
C# 1.0 .NET Framework 1.0/1.1 Visual Studio .NET 2002
C# 2.0 .NET Framework 2.0 Visual Studio 2005
C# 3.0 .NET Framework 3.0\3.5 Visual Studio 2008
C# 4.0 .NET Framework 4.0 Visual Studio 2010
C# 5.0 .NET Framework 4.5 Visual Studio 2012/2013
C# 6.0 .NET Framework 4.6 Visual Studio 2013/2015
C# 7.0 .NET Core 2.0 Visual Studio 2017
C# 8.0 .NET Core 3.0 Visual Studio 2019
Upvotes: 12
Reputation: 317
C# 8.0 is the latest version of C#. It is supported only on .NET Core 3.x and newer versions. Many of the newest features require library and runtime features introduced in .NET Core 3.x.
The following table lists the target framework with version and their default C# version.
Source - C# language versioning
Upvotes: 6
Reputation: 1553
[Source]: https://github.com/dotnet/csharplang/blob/master/Language-Version-History.md
Upvotes: 21
Reputation: 834
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
Upvotes: 224
Reputation: 28
Version | Language specification | Microsoft compiler |
---|---|---|
C# 1.0/1.2 | December 2001?/2003? | January 2002? |
C# 2.0 | September 2005 | November 2005? |
C# 3.0 | May 2006 | November 2006? |
C# 4.0 | March 2009 (draft) | April 2010? |
C# 5.0 | Released with .NET 4.5 in August 2012 | |
C# 6.0 | Released with .NET 4.6 2015 | |
C# 7.0 | Released with .NET 4.7 2017 | |
C# 8.0 | Released with .NET 4.8 2019 |
Upvotes: 100
Reputation: 11241
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.
Upvotes: 332
Reputation: 2357
I've summarised most of the versions in this table. The only ones missing should be ASP.NET Core versions. I've also added different versions of ASP.NET MVC.
Note that ASP.NET 5 has been rebranded as ASP.NET Core 1.0 and ASP.NET MVC 6 has been rebranded as ASP.NET Core MVC 1.0.0. I believe this change occurred sometime around Jan 2016.
I have included the release date of ASP.NET 5 RC1 in the table, but I've yet to include ASP.NET core 1.0 and other core versions, because I couldn't find the exact release dates. You can read more about the release dates regarding ASP.NET Core here: When is ASP.NET Core 1.0 (ASP.NET 5 / vNext) scheduled for release?
Upvotes: 67
Reputation: 10424
Comparing the MSDN articles "What's New in the C# 2.0 Language and Compiler" and "What's New in Visual C# 2005", it is possible to deduce that "C# major_version.minor_version" is coined according to the compiler's version numbering.
There is C# 1.2 corresponding to .NET 1.1 and VS 2003 and also named as Visual C# .NET 2003.
But further on Microsoft stopped to increment the minor version (after the dot) numbers or to have them other than zero, 0
. Though it should be noted that C# corresponding to .NET 3.5 is named in msdn.microsoft.com as "Visual C# 2008 Service Pack 1".
There are two parallel namings: By major .NET/compiler version numbering and by Visual Studio numbering.
C# 2.0 is a synonym for Visual C# 2005
C# 3.0 corresponds (or, more correctly, can target) to:
Upvotes: 44