Programming Languages

What is the purpose of the `async` and `await` keywords in C#?

Medium
5
Added
The `async` keyword is used to define an asynchronous method, while the `await` keyword is used to wait for the completion of an asynchronous task.