Beginner
C#
Q18 / 100
What does async/await do in C#?
Correct! Well done.
Incorrect.
The correct answer is B) Enables non-blocking asynchronous code that reads like synchronous code
B
Correct Answer
Enables non-blocking asynchronous code that reads like synchronous code
Explanation
async methods contain await expressions. await suspends the method until the awaited Task completes, freeing the thread for other work.
Progress
18/100