标签:
一、System.Timers.Timer
var action = new Action(() => { //要执行的事件 }); System.Timers.Timer t = new System.Timers.Timer(1000);//实例化Timer类,设置间隔时间为10000毫秒; //到达时间的时候执行事件; t.Elapsed += (sender, e) => { action(); }; t.AutoReset = false;//设置是执行一次(false)还是一直执行(true); t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
标签:
原文地址:http://www.cnblogs.com/xinweijs/p/4335015.html