在调试的时候,
运行到
System.Timers.Timer t = new System.Timers.Timer(20000);
//实例化Timer类,设置间隔时间为10000毫秒;
t.Elapsed += new System.Timers.ElapsedEventHandler(theout);//到达时间的时候执行事件;
t.AutoReset = true;
//设置是执行一次(false)还是一直执行(true);
t.Enabled = true;
其中 theout 是我些的一个方法,用来进行我的逻辑处理的。我传了一存有数据的table,可传如后table的值有时候有有时候会丢失掉,句话,不稳定。