Pausing and resuming a thread without Suspend() and Resume()

  • Thread starter Thread starter SpookyET
  • Start date Start date
S

SpookyET

How do you pause and resume some work without using Thread.Suspend and
Thread.Resume since they are deprecated in .NET 2.0?
 
Mutex would be the best bet. Suspend and Resume were never a good advice
anyway. Mutex has always been the prefered method, even with C++.
 
Back
Top