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

In what order do the console lines print?

async Task Run() { Console.WriteLine("A"); await Task.Delay(100); Console.WriteLine("B"); } Console.WriteLine("start"); var t = Run(); Console.WriteLine("end"); await t;