Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#ConfigureAwait falseSingle-choice MCQ

Given this method on a thread with a SynchronizationContext (e.g., classic ASP.NET / UI), where does the line after each await most likely run?

async Task M() { await FooAsync().ConfigureAwait(false); // line A await BarAsync(); // line B }