Asynchronous Operations
2 sectionsRapid overview
Asynchronous Operations
TL;DR
An asynchronous operation is one you start now and whose result arrives later, without the caller having to wait on a thread in the meantime. In .NET it is represented by a Task / Task<T> (or ValueTask): a promise of a future result. Most r…
Read →How it works
Q: What is an asynchronous operation?
Read →