Please help me to understand new versions of .NET and Visual Studio. I read articles where it was described features of .NET 4.5, and in others it was referred to as .NET 5. For example is async/await .NET 5 feature or .NET 4.5? Are the 4.5 and 5 the same versions? If no, then when will each one be released? Also some misunderstanding related to Visual Studio 11 and 2012. Thanks a lot.

link|improve this question

77% accept rate
2  
I'll add that it would be interesting to know the name of the C# compiler :-) 4.5 or 5.0? Will the C# compiler go "faster" than the .NET? 5.0 > 4.5 :-) :-) – xanatos Oct 24 '11 at 7:56
feedback

closed as not constructive by ChrisF, BoltClock, marc_s, Jeremy McGee, Hans Passant Oct 24 '11 at 8:14

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.

3 Answers

up vote 7 down vote accepted

The next versions are: .NET 4.5, C# 5.0 and VS11.

link|improve this answer
1  
OK, then async/await is C# 5 feature or .NET 4.5? – Arterius Oct 24 '11 at 7:58
5  
async/await are implemented in the compiler, so C#5. – Nicholas Butler Oct 24 '11 at 8:01
3  
Visual Studio 2012 is VS11 – Esi Dec 13 '11 at 7:10
feedback

async is a C# 5 feature, not a .NET one. Its a language feature to hide most of the hard plumbing for async from your code. In essence it lets you write code that looks simple and linear but compiles to async. If it helps to picture it; in an async method the code runs as normal, until it hits a await keyword, at that point the rest of the method is essentially compiled as a lambda fired when the awaited async operation completes.

link|improve this answer
feedback

Your comment is easier to respond: async is a feature of the compiler. The compiler "rewrites" the code (like with the yield keyword) producing an hidden class with a state machine to execute your async code. There are some additional methods in the Task library to support this, but I think they could have been made in .NET 4.0.

To be more precise, I don't think they had to add anything to the IL language to support async/await, because when you compile the code the async/await "disappear"

link|improve this answer
1  
OK, then metro style apps support is .NET 4.5 built in feature? – Arterius Oct 24 '11 at 8:04
2  
@Arterius From what I've seen, Metro style apps is a feature of Windows 8 :-) It's a "different" "framework" (where framework == set of base libraries). If you download the VS 2012 preview, you can't compiler metro apps unless you are on Windows 8. It's like Windows Phone 7 apps. Different (similar) framework. – xanatos Oct 24 '11 at 8:05
VS 11 developer preview has project termplates for metro projects built in. as far as I can tell these need .NET 4.5 and Windows 8 to run as they need access to teh OS WinRT layer. – Pete Stensønes Oct 24 '11 at 8:26
1  
@PeteStensønes Metro apps use a subset of .NET 4.5. Metro style apps are designed for specific form factors and leverage the power of the Windows operating system. A subset of the .NET Framework is available for building Metro style apps for Windows using C# or Visual Basic. This subset is called .NET APIs for Metro style apps. For more information about this subset, see .NET for Metro style apps. (from msdn.microsoft.com/en-us/library/ms171868(v=vs.110).aspx) – xanatos Oct 24 '11 at 8:28
@PeteStensønes But perhaps you are right dougseven.com/tag/net-4-5 the Metro Framework is described as There is a difference though. Metro style apps use what is best described as a different .NET Profile (e.g. Desktop apps use the .NET Client Profile and Metro style apps use the .NET Metro Profile). There is NOT actually a different profile, but the implementation of .NET in Metro style apps is LIKE a different profile. so it's like a virtual profile... They really did do strange things :-) – xanatos Oct 24 '11 at 8:38
feedback

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