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
}