Skip to content

Instantly share code, notes, and snippets.

@jonlabelle
jonlabelle / async_await_best_practices_cheatsheet.md
Last active July 7, 2025 17:39
C# Asynchronous Programming Guideline Cheat Sheet

Async Await Best Practices Cheat Sheet

Summary of Asynchronous Programming Guidelines

Name Description Exceptions
Avoid async void Prefer async Task methods over async void methods Event handlers
Async all the way Don't mix blocking and async code Console main method
Configure context Use ConfigureAwait(false) when you can Methods that require con­text