Get result from Task.WhenAll

后端 未结 2 1630

I have multiple tasks returning the same object type that I want to call using Task.WhenAll(new[]{t1,t2,t3}); and read the results.

When I try using <

相关标签:
2条回答
  • 2021-01-17 11:39

    Looks like you are using the overload of WaitAll() that doesn't return a value. If you make the following changes, it should work.

    List<string>[] all = await Task.WhenAll(new Task<List<string>>[] { t, t2 })
                                   .ConfigureAwait(false);
    
    0 讨论(0)
  • 2021-01-17 11:54

    The return type of WhenAll is a task whose result type is an array of the individual tasks' result type, in your case Task<List<string>[]>

    When used in an await expression, the task will be "unwrapped" into its result type, meaning that the type of your "all" variable should be List<string>[]

    0 讨论(0)
提交回复
热议问题