DEV Community

Discussion on: Why I no longer use ConfigureAwait(false)

Collapse
 
paulomorgado profile image
Paulo Morgado

ConfigureAwait(false) is about not returning back to the synchronization context when an awaiter completes.

It's about performance, not deadlocks.

Collapse
 
noseratio profile image
Andrew Nosenko

I believe I've covered that in the article in this section:

• Potential performance improvements