Methods that makes a thread to wait other than sleep() in .net
开发者_开发技巧Is there any methods that makes a thread to wait, other than Thread.Sleep() in .net ?
If you're managing resources on threads you can use the monitor class to wait and such Monitor.
ManualResetEvent.WaitOne(..) ?
精彩评论