В этом примере кода:
Код: Выделить всё
var s = Task.FromResult(true).ContinueWith(async t => t ).ContinueWith(async t => t);
await await await await await s;
Подробнее здесь: https://stackoverflow.com/questions/791 ... statements
Код: Выделить всё
var s = Task.FromResult(true).ContinueWith(async t => t ).ContinueWith(async t => t);
await await await await await s;