Asynchrony
Asynchronous programming allows your program to perform tasks (like downloading a file) without blocking the main thread.
Keywords:
async: Marks a method as asynchronous.await: Pauses execution until the task completes.Task: Represents the work to be done.
csharp
public async Task