我有两种异步方法如下:
protected async Task<bool> DoSomething(byte[] data) {
await System.Console.Out.WriteLineAsync("Do things.");
Data refinedData = Data.fromByteArray(data);
return DoSomething(refinedData); // Compiler error!
}
protected async Task<bool> DoSomething(Data data) {
/* Do way more interesting things with data now that it's our type! */
return true;
}
我想做的不是必须使用await
我的第一个 return 语句,而是只需传递到DoSomething
. 是否有一种特殊的方法可以在第二次覆盖的返回时调用以推迟到它生成的Task
实例,或者我可以/应该使用的特定语言机制?