This talk will present the new language support for asynchronous programming available in the upcoming version of C#, C# 5.0. Writing distributed or even just IO-intensive applications that are responsive yet frugal with resources is a difficult task.
With the rise of web programming this has become a common problem. The solution lies in adopting asynchronous operations that separate issuing a request from awaiting its completion. While it has always been possible to program asynchronously in C# it has never been easy. The challenge is that asynchronous operations rely on callbacks, ...
↧