Thread Problem.
In My program i have one thread.
and i want the thread sleep 2 times
///////////
Thread.Sleep(10000);
Action1
Thread.Sleep(20000);
Action2
/////////
But it's only Sleep 10 seconds and the Action2 do not sleep 20 seconds.
Why
bilnaadPosted Oct 30, 2004, 11:34 AM