Csharp/C Sharp by API/System.Threading/ManualResetEvent — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:08, 26 мая 2010
ManualResetEvent.Set
using System;
using System.Threading;
class ManualSet{
[STAThread]
static void Main(string[] args) {
ManualResetEvent manRE = new ManualResetEvent(false);
bool state = manRE.WaitOne(5000, true);
Console.WriteLine("ManualResetEvent After first WaitOne " + state);
manRE.Set();
state = manRE.WaitOne(5000, true);
Console.WriteLine("ManualResetEvent After second WaitOne " + state);
}
}