0
kicks
the concept of async \ await
the concept of async \ awaitthe concept of async \ await
in this post I will survey the new .NET 4.5 / C# 5 concept of async / await.
I will focus on how to understand what is really happens behind the new async / await syntax.What's it all about?
the new async / await syntax is using the C# syntactic compiler to generate async operation from code that is looking very much like a synchronous code.
but before we start we should discus the new C# 5 syntax.
the syntax include 2 keywords:async - whic...