恩 基本上是这样 不过有几点要注意一下:
第1开头的引用
using System.Threading;
第2线城的开始,要开始必须要Start
Thread t=new Thread(new ThreadStart(function));
Thread.sleep(6000);//注意 不是t.sleep() 实例的t不能.sleep(),Thread.sleep表示当前线程堵塞睡眠时间
t.Start();//开始运行线程
当然 还可以间隔一定时间引发在using System.Timers 里,要复杂些