.NET 4 equivalent of Task.WhenAll()

Viewed 6856

In .NET 4, is there any functional equivalent to .NET 4.5's System.Threading.Tasks.Task.WhenAll()?

The goal is to wrap up multiple async tasks into a single one that is completed when all of its constituent tasks are done.

3 Answers
Related