最佳答案
我想写一个带有out
参数的异步方法,就像这样:
public async void Method1()
{
int op;
int result = await GetDataTaskAsync(out op);
}
如何在GetDataTaskAsync
中做到这一点?