我創建了一個定時器定時器得到間隔時間
private static AutoResetEvent autoEvent;
private static Timer stateTimer;
public static void Start()
{
autoEvent = new AutoResetEvent(false);
TimerCallback timerDelegate = new TimerCallback(SomeClass.TimerLoad);
stateTimer = new Timer(timerDelegate, autoEvent, 1000, 3 * 60 * 60 * 1000);
}
從其他程序更改計時器:
stateTimer.Change(0, 5 * 60 * 1000);
現在,我需要知道什麼是間隔,是否有任何appropiate指令?
使用的System.Threading – 2010-03-02 08:52:47