PreviousNext

C# Async Antipatterns

by bill-s, 2019-02-27T05:44:51.375Z

The async and await keywords have done a great job of simplifying writing asynchronous code in C#, but unfortunately they can't magically protect you from getting things wrong. In this article, I want to highlight a bunch of the most common async coding mistakes or antipatterns that I've come across in code reviews.

Read More