有很多关于定时器脚本的问题和文章,但奇怪的是,我没有成功,呃,这个。它只是(?)一个简单的委托 - 计时器。我会发布错误,但这可能是对计时类的粗略理解。
class Core
{
private static System.Timers.Timer systimer, sysupdate;
delegate void MyDelegate(string s);
public static void Main(string[] args)
{
Core dtimer = new FunctionTimer();
Core dupdate = new Update();
TimerCallback tcb1 = Core.FunctionTimer;
TimerCallback tcb2 = Core.Update;
systimer = new Timer(tcb1, null, 0, 1);
sysupdate = new Timer(tcb2, null, 0, 1);
}
}
我假设实际的方法有点无关紧要..