Esempio n. 1
0
        public static void Start()
        {
            SendNotice Action = new SendNotice();

            timer = new System.Threading.Timer(new System.Threading.TimerCallback(Action.DoSend));
            timer.Change(10, ScanTime);
        }
Esempio n. 2
0
 public static void Start()
 {
     SendNotice Action = new SendNotice();
     timer = new System.Threading.Timer(new System.Threading.TimerCallback(Action.DoSend));
     timer.Change(10, ScanTime);
 }