Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#async await basicsSingle-choice MCQ

What does the await keyword do to the rest of the method after it?

async Task<int> LoadAsync() { var data = await FetchAsync(); return data.Length; }