A really simple C# async example

Asynchronous programming is awesome, and C# makes it very easy with the .NET Task Parallel Library.Β  At a high level, asynchronous programming is all about not letting independent tasks block each other so you can do more than one thing at a time.Β  One common analogy used to describe the asynchronous pattern is cooking.Β  Let's … Continue reading A really simple C# async example