Here the whole talk on YouTube
I am looking forward to give a talk about some insights and pitfalls of async / await. I will talk about the differences between asynchronous and parallel programming. Also a brief outlook how the state machine internally works. Feel free to join here: https://www.meetup.com/dotnet-zurich/events/278916769/
You often here that the async/await keywords leads to a state machine. But what does that mean? Let's discuss this with a simple example.
Did you ever wonder why you "should" use async and await in your ASP.NET Core applications? Most probably, you heard something about performance. And there is some truth to it, but not in the way you might think. So let's discuss this with smaller examples.