我想调用method1然后将其置于'sleep'中,而method1正在休眠,调用method2直到method1'唤醒'。我读了一些关于System.Timer的内容,但我不知道如何在方法1等待时调用method2,等等。
static void Main(string[] args)
{
Program p = new Program();
p.method1();
p.method2();
}
public void method1()
{
//Do smth and wait X seconds
}
public void method2()
{
//Do smth while method1 is waiting
}