C#计时函数
RT,本篇记录C#中的计时函数的写法
第⼀种:
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromMilliseconds(100);
timer.Tick += Timer_Tick;
timer.Start();
//100毫秒执⾏⼀次
private void Timer_Tick(object sender, EventArgs e)
{}writeline函数
第⼆种:
Timer time = new Timer(10);
time.Elapsed += Time_Elapsed;
time.Start();
//10毫秒执⾏⼀次
private void Time_Elapsed(object sender, ElapsedEventArgs e)
{
Console.WriteLine("time");
}
第三种延时启动
System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ParameterizedThreadStart((delegate { Console.WriteLine("aaaaaaaaa");
judge.startFunc();
})
));//创建线程
//thread.Start(3); //延时三秒启动线程
thread.Start();
暂时只⽤了这⼏种,欢迎各位⼤神们将其他写法写在评论上,我也会随时添加上新的写法。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论