Gibt es einen kürzeren Weg, um auf das Ende mehrerer Threads zu warten? Vielleicht mit ContinueWhenAll... aber ich möchte nicht den Rest meines Codes async ausführen.
List<object> objList = // something
List<Task> taskHandles = new List<Task>();
for(int i = 0; i < objList.Count; i++) {
taskHandles.Add(Task.Factory.StartNew(() => { Process(objList[i]); }));
}
foreach(Task t in taskHandles) { t.Wait(); }
DoSomeSync1();
..
DoSomeSync2();
..
DoSomeSync3();
..
// I could have used ContinueWhenAll(waitHandles, (antecedent) => { DoSomeSync...; });
// but I'd rather not have to do that.
// It would be nice if I could have just done:
Parallel.ForEach(objList, (obj) => { Process(obj); }).WaitAll();
// or something like that.