S SpookyET Mar 10, 2005 #1 How do you pause and resume some work without using Thread.Suspend and Thread.Resume since they are deprecated in .NET 2.0?
How do you pause and resume some work without using Thread.Suspend and Thread.Resume since they are deprecated in .NET 2.0?
M McMe Mar 10, 2005 #2 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++.
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++.