Consider this code:
考虑以下代码:
public async Task SomeMethodAsync(){
//1. code here executes on the original context
//for simplicity sake, this doesn't complete instantly
var result1 = await Method1Async().ConfigureAwait(false);
//2. code here doesn't executes in the original context
public async Ta