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.
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.
|
The next versions are: .NET 4.5, C# 5.0 and VS11. | |||||||||||||
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. | ||||
|
feedback
|
|
Your comment is easier to respond: To be more precise, I don't think they had to add anything to the IL language to support | |||||||||||||||||
feedback
|