Are you sure you want to delete this flashcard?

CSharp

How does async/await work in C#?

The async/await keywords are used to write asynchronous code more easily. 'async' marks a method as asynchronous, and 'await' pauses the execution until the awaited task completes, without blocking the thread.

3

https://www.geeksforgeeks.org/async-and-await-in-c-sharp/

2

Cancel