I have a situation in my code where i'm starting unknown number of tasks and would like to use Task.WaitAll().
something like this:
if (condition)
{
var task1 = Task.Factory.StartNew (call the web service1...);
}
if (condition)
{
var task2 = Task.Factory.StartNew (call the web service2...);
}
if (condition)
{
var task3 = Task.Factory.StartNew (call the web service3...);
}
Task.WaitAll(task1, task2, task3);
The problem is that i can't say
Task.WaitAll(task1, task2 , task3)
because i don't know which one of them will actually start. Any idea for a solution?
