Correcting Common Async/Await Mistakes in .NET 10
Did you know that the .NET compiler turns our async methods into a struct? And that .NET adds a try/catch block to each of these classes, potentially hiding thrown exceptions? It’s true!
In this session, we will learn how to best use async/await in C# by analyzing how .NET compiles our async code.