#Threading
2 notas · última:
Asynchronous Programming
A página reúne orientações para código assíncrono em .NET e ASP.NET Core, destacando armadilhas como async void, sync over async, bloqueios, cancelamento e uso correto de AsyncLocal e TaskCompletionSource.
A complete guide to async programming in C#: understand threading, non-blocking I/O, await behavior, and best practices with ConfigureAwait
Stalin walks through what async/await does under the hood in C#, from thread pooling and await's resume point to SynchronizationContext, ConfigureAwait(false), and CancellationToken.
