vote up 51 vote down star
15

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 :)

flag
1  
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
@dove: Fine by me. It's a shame we can't have more than 5 tags :( – Jon Skeet Oct 29 '08 at 17:26
Hopefully you won't need the c#3.5 tag for very long ;-) – Lloyd Cotten Nov 3 '08 at 23:45
Pull C#5.0 back off, since this question is the only place that tag exists. Can always add it back later when a real C#5.0 is announced/seriously speculated. – Joel Coehoorn Nov 5 '08 at 20:23
show 2 more comments

3 Answers

vote up 3 vote down

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|flag
vote up 99 vote down check

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; to be released with .NET 4.0 and VS2010 (March 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 new speculated features: metaprogramming

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 still (at the time of .NET 3.5) at version 2.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|flag
guess you should give this as the correct answer? good wiki material – dove Oct 29 '08 at 17:15
1  
@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
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
@Michael: There are details of all of that in the link to the C# in Depth site. I'll make that clearer in the link. – Jon Skeet Nov 3 '08 at 21:18
Jon, what is that metaprogramming about? will you be able to do stuff you can do today with c++ templates? – Johannes Schaub - litb Nov 22 '08 at 17:17
show 10 more comments

Your Answer

Get an OpenID
or

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