What can I do in C# 5 with .Net 4.5 that I couldn't do in C# 4 with .Net 4?

C#.Net.Net 4.5C# 5.0asp.net 4.5

C# Problem Overview


I have Visual Studio 2012 RC installed on Windows 8 Release Preview and my question is are there any useful new features not related to Metro, or is Metro what seperates .Net 4 and .Net 4.5?

C# Solutions


Solution 1 - C#

See What's New in the .NET Framework 4.5 and What's New for Visual C# in Visual Studio 2012.

The biggest new feature of C# 5.0 is better support for asynchronous operations, using the new await keyword.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJMKView Question on Stackoverflow
Solution 1 - C#svickView Answer on Stackoverflow