vote up 4 vote down star
3

There's been a lot of talk about C# 4.0 and even some hints about 5.0 at the PDC, but I've been unable to ascertain when the languages will actually be released so we can use them (note that when I say released I mean as in the final version, not betas or CTPs).

C# 4.0 requires the DLR and appears to be talked about in the context of VS2010 which would indicate that it won't be until some time in late 2009 at the earliest. However, the sneak preview of C# 5.0 at the PDC seems to indicate that it too may be ready by 2010.

So, is 4.0 going to be a non-shipping release and we'll jump straight to 5.0, or will 5.0 be later than 2010? Or will 4.0 be released earlier?

(BTW - the reason I'm asking is because it appears that C# 4.0 is already complete and that work on 5.0 is well under way, so it seems surprising that 4.0 could be simply sitting on the shelf for another year before we can use its capabilities).

flag

73% accept rate
C# 4.0 needs the DLR? Why? What rationale was given for that? I know that VBX will need it, but never heard anything about C# being the same. – Chris Charabaruk Nov 12 '08 at 16:09
Its new "dynamic" type will use some of the DLR mechanisms for binding. Check out this video for more info: channel9.msdn.com/shows/Going+Deep/… – Greg Beech Nov 12 '08 at 16:12

7 Answers

vote up 9 vote down check

Don't assume that just because there's enough to play with in a CTP that C# 4.0 (or the rest of .NET 4.0) is "finished". There's a big difference between "we've got something useful and interesting for getting feedback from developers" and "we're willing to say this code works and we'll support it."

I first played with LINQ before VS2005 was even released... and it was another 2 years before VS2008 was fully out. (And yes, the language changed between those dates - in particular automatically implemented properties were introduced, and the rules for collection initializers changed. I suspect that type inference was tweaked too.)

I'm still hoping that C# 4.0 might get readonly automatically implemented properties if we shout loudly enough ;)

As for the direct question: C# 4.0 will be part of VS2010. I have heard rumours of that being scheduled for late 2009, or around February 2010 - but those are only rumours, and frankly I wouldn't put much faith in any software schedule which looked a year or more into the future. I think it's reasonable to guess "later than September 2009 and earlier than September 2010."

link|flag
re automatic readonly props - is there a common feedback location for this specific feature that I can put my name on? – Erik Nov 12 '08 at 17:59
1  
@Erik: Well, my plea is on Eric Lippert's most recent blog entry: blogs.msdn.com/ericlippert/archive/… But that's not exactly a recognised official feedback forum :) I suggest the VS2010 forum. – Jon Skeet Nov 12 '08 at 18:37
readonly automatically implemented properties - I was pretty sure you could do it with "public string SomeString( get; private set;)" Or have I miss-understood you? – TWith2Sugars Dec 3 '08 at 9:05
@TWith2Sugars: That's not properly readonly. The backing variable is still writable, and other code within the same class can still set it. Compare that with a property which only has a getter, and a readonly backing variable. – Jon Skeet Dec 3 '08 at 9:20
vote up 4 vote down

C# 4 will come with VS2010. Despite its name, I'd guess VS2010 will be released in late 2009.

link|flag
vote up 2 vote down

C# 4.0 will release with Visual Studio 2010.

link|flag
vote up 8 vote down

We have not announced a ship date for Visual Studio 2010 yet, but I bet the name is some kind of a hint. :)

link|flag
So does that mean that C# 4.0 is definitely VS2010, and C# 5.0 is definitely later than that? – Greg Beech Nov 12 '08 at 16:22
Pff, what do you know. Oh, wait. ;P – Robert S. Nov 12 '08 at 16:28
2  
Remind me of the release date for VS2008? ;) – Jon Skeet Nov 12 '08 at 17:31
vote up 2 vote down

You can try VS2010 and C#4.0 betas right now. http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&displaylang=en

It's a virtual machine with everything installed. I haven't tried it myself but it looks interesnting

link|flag
I know - but I specifically asked about the final release, not betas. – Greg Beech Nov 12 '08 at 16:10
Also note that the CTP is pre-beta quality, not really a beta. – Jon Skeet Nov 12 '08 at 17:48
vote up 3 vote down

C# 5.0 will be released after C# 4.0.

link|flag
1  
I like that & couldn't stop smiling :) – shahkalpesh Sep 15 at 16:50
vote up 0 vote down

Final release of C# 4 is schedule for march 22, 2010.

link|flag

Your Answer

Get an OpenID
or

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