Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Task<T>对象数组,并且想阻止直到所有对象都返回。我该怎么做?(这是在调试视图中,因此性能不是问题)。
Task<T>
基本上,相当于 jquery 的 $.when 的任务库是什么?
如果要阻止,可以使用Task.WaitAll(yourTasks);. 如果您想使用在全部完成后触发的延续(并且使用 .NET 4.5 或 .NET 4.0 的 AsyncTargetingPack),您可以使用Task.WhenAll(yourTasks).ContinueWith(t => ...);
Task.WaitAll(yourTasks);
Task.WhenAll(yourTasks).ContinueWith(t => ...);
Task.WaitAll(arrayOfTasks); ///.....