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

Which return type should this method have so the caller can both await it AND read the produced string?

async ??? FetchNameAsync() { await Task.Delay(5); return "bob"; }