Tagged Questions

1
vote
3answers
379 views

ThreadA and ThreadB both call WaitOne() in that order on the same AutoResetEvent - when the event is set, why does ThreadB get released instead of ThreadA?

I ran a test to find out what happens when you set an AutoResetEvent on which mutiple threads are waiting: private static void Test() { // two threads - waiting for the same autoreset ...