Task.Factory.FromAsync具有超过3个参数和输出参数

时间:2019-06-18 13:02:49

标签: c# task-parallel-library

我正在尝试将Task.Factory.FromAsync用于以下异步方法:

public System.IAsyncResult BeginMethod(string arg1, string arg2, string arg3, string arg4, System.AsyncCallback callback, object asyncState)

public int EndMethod(System.IAsyncResult result, out string a1, out string a2)

我找到了此链接:task-factory-fromasync-with-out-parameters-in-end-method/19171332

但是似乎我的in参数太多,无法使用。 如何使用任务开始结束异步方法?

0 个答案:

没有答案