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". At the time of this writing, there are several questions tagged with "c#3.5". I'm shortly going to correct this, as recommended by the answer to this question about terminology. The hope is that anyone failing to find an answer with the wrong version number will find this answer and then search again with the right version number.]

EDIT: I've now retagged all of the questions marked "c#3.5" to "c#3.0" and "c#4" to "c#4.0" (excluding this one, of course). If those of us who care about this could try to keep an eye out for new questions with those tags, that would be handy :)

link|improve this question
14  
Great question. I've faced huge opposition when correcting people on their use of terminology. It's a shame because if we can't give accurate information here, then it makes the site far less useful. There is no place for pride in a wiki. – Jeff Yates Oct 29 '08 at 17:13
hope you don't mind Jon but tagged as c#5.0 for neatness. This will be a good reference question and continue to be. – dove Oct 29 '08 at 17:17
3  
@dove: Fine by me. It's a shame we can't have more than 5 tags :( – Jon Skeet Oct 29 '08 at 17:26
5  
@Martinho: No, it's been the sole question with the C# 3.5 for a long time. The point is to leave the tag there to draw people towards the question if they see "c#3.5" anywhere. – Jon Skeet Nov 24 '09 at 17:16
2  
@John: That's possible... but it should come up with a very low count compared with c#3.0 etc. – Jon Skeet Apr 26 '10 at 21:33
show 7 more comments
feedback

closed as not constructive by Kev May 7 at 14:42

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 402 down vote accepted

These are the versions of C# known about at the time of this writing:

  • C# 1.0; released with .NET 1.0 and VS2002 (January 2002)
  • C# 1.2 (bizarrely enough); released with .NET 1.1 and VS2003 (April 2003). First version to call Dispose on IEnumerators which implemented IDisposable. A few other small features.
  • C# 2.0; released with .NET 2.0 and VS2005 (November 2005). Major new features: generics, anonymous methods, nullable types, iterator blocks
  • C# 3.0; released with .NET 3.5 and VS2008 (November 2007). Major new features: lambda expressions, extension methods, expression trees, anonymous types, implicit typing (var), query expressions
  • C# 4.0; released with .NET 4 and VS2010 (April 2010). Major new features: late binding (dynamic), delegate and interface generic variance, more COM support, named arguments and optional parameters
  • C# 5.0; unknown time frame. Major features: async programming, caller info attributes. To be shipped with .NET 4.5; beta available on February 29th 2012 - full release time frame still unknown.

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.

More detailed information about the relationship between the language, runtime and framework versions is available on the C# in Depth site. This includes information about which features of C# 3.0 you can use when targeting .NET 2.0. (If anyone wants to bring all of the content into this wiki answer, they're welcome to.)

link|improve this answer
6  
@dove: I can't see any way of marking it "correct" presumably because I wrote it. (As you may be able to tell, I wrote it before posting the question - I didn't want anyone else wasting their time with duplicate work.) If it stays the only answer it won't be a problem though :) – Jon Skeet Oct 29 '08 at 17:28
1  
It could be added that you can use some 3.0 language features when targeting .net 2.0 by using the .net 3.5 compiler. For example, "var" and I believe Lamdas. – Michael Stum Nov 3 '08 at 20:37
1  
@Dercsar - extension methods are not in C# 2.0. They were first made available as part of .Net 3.5, which is C# 3.0. – Charles Boyung Apr 1 '10 at 18:15
1  
@xanatos: Yup, will edit - although I still don't know of a timeframe... – Jon Skeet Sep 15 '11 at 11:08
1  
@odalet: They couldn't - but don't forget that unlike IEnumerator<T>, the non-generic IEnumerator doesn't implement IDisposable... – Jon Skeet Mar 28 at 10:09
show 20 more comments
feedback

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 syncronized releases between Visual Studio and the .NET Framework.

The version of C# is actually bound to the compiler, not the framework. For instance, in VS2008 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, C99 describe the code syntax/features for C.

Take a look at Mono, you will see that Mono 2.0 (mostly implemented version 2.0 of the .NET Framework from the ECMA specs) supports the C# 3.0 syntax and features.

link|improve this answer
feedback

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 installs on top of Visual Studio 2010, please refer http://blog.functionalfun.net/2010/10/pdc-2010-speculations.html for C#5.0.

link|improve this answer
1  
The C# 5 CTP installs on top of Visual Studio 2010. We have no evidence that the final release will do so. Bear in mind that the LINQ CTP also installed on Visual Studio 2005. – Jon Skeet Dec 31 '10 at 13:27
Yes, agreed, unless next version of Visual Studio comes, Microsoft will take initiative to do that. – iTSrAVIE Dec 31 '10 at 13:37
the next version VS2011 is announched and looks promising with .Net4.5 – iTSrAVIE Oct 15 '11 at 8:57
feedback

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?

link|improve this answer
2  
Where did you get a C# 2.0 language specification in December 2002 from? Likewise C# 4 in June 2006? Are you sure you're not talking about ECMA editions, which are completely different? – Jon Skeet May 7 '10 at 11:28
just refer the following link en.wikipedia.org/wiki/C_Sharp_(programming_language) – Pramodh May 7 '10 at 11:33
46  
Ah, well, if it's on Wikipedia, it must be right :-) – paxdiablo May 11 '10 at 4:31
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.