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

What is the type of the variable returned by an async method declared as 'async Task<int>'?

async Task<int> GetValueAsync() { await Task.Delay(10); return 42; } var result = GetValueAsync();