No exceptions thrown.
Why
Thread starvation due to sync-over-async.
Fix
await Task.Run(() => AsyncMethod()).ConfigureAwait(false);
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
No exceptions thrown.
Why
Thread starvation due to sync-over-async.
Fix
await Task.Run(() => AsyncMethod()).ConfigureAwait(false);