标签:
写在Global里,程序启动的时候就开始执行
//每半小时掉一次方法 System.Timers.Timer t = new System.Timers.Timer(5000 * 12 * 10); //设置时间间隔为5秒 t.Elapsed += new System.Timers.ElapsedEventHandler(new Training.Controllers.DockingInterfaceController().HNban); t.AutoReset = true; //每到指定时间Elapsed事件是触发一次(false),还是一直触发(true) t.Enabled = true; //是否触发Elapsed事件 t.Start();
标签:
原文地址:http://www.cnblogs.com/cang12138/p/5845743.html