在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
定时器事件代码 static void Main(string[] args) { Method(); #region 定时器事件 Timer aTimer = new Timer(); aTimer.Elapsed += new ElapsedEventHandler(TimedEvent); aTimer.Interval = seconds * 1000; //配置文件中配置的秒数 aTimer.Enabled = true; #endregion string strLine; do { strLine = Console.ReadLine(); } while (strLine != null && strLine != "exit"); } private static void TimedEvent(object source, ElapsedEventArgs e) { Method(); } |
请发表评论