WaitAll for multiple handles on a STA thread is not supported

Actually I use the following to replace WaitHandle.WaitAll(doneEvents);

foreach (var e in doneEvents)
    e.WaitOne();

Leave a Comment