The purpose of the synchronization model implemented by the SynchronizationContext class is to allow the asynchronous/synchronization operations of the common language runtime to behave properly with different synchronization models. This model also simplifies...
Here are the materials from my What’s New In C# 5.0 session at the Rumos InsideOut Event . Slide deck: What's New In C# 5.0 from Paulo Morgado Sample code: C# 5.0 Async/Await Demo Code
I’ve published the sample code I use to demonstrate the use of async / await in C# 5.0. You can find it here . Projects PauloMorgado.AyncDemo.WebServer This project is a simple web server implemented as a console application using Microsoft ASP.NET Web...
According to the .NET Blog , .NET Framework 4.5 is an in-place update that replaces .NET Framework 4.0 (rather than a side-by-side installation). The goal is for .NET 4.5 to be fully backward compatible with applications built for .NET 4.0 (.NET 3.5 and...