怎么在C#中的FOR语句中加一个延时系统 20
展开全部
第一个 采用Thread方法
先using system.threading;
再在需要延时的进程处插入
thread.sleep(int);
application.doevent();
这个方法只是直接将正在运行的进程HOLD,时间过后该进程再继续运行。
第二个 采用Timer方法
Timer控件 Timer.Enabled 属性用于设置是否启用定时器 Timer.Interval 属性,事件的间隔,单位毫秒 Timer.Elapsed 事件,达到间隔时发生。
例子:
public class Timer1
{
public static void Main()
{
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed+=new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 5 seconds.
aTimer.Interval=5000;
aTimer.Enabled=true;
Console.WriteLine("Press \'q\' to quit the sample.");
while(Console.Read()!='q');
}
// Specify what you want to happen when the Elapsed event is raised.
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{ Console.WriteLine("Hello World!");
}
}
先using system.threading;
再在需要延时的进程处插入
thread.sleep(int);
application.doevent();
这个方法只是直接将正在运行的进程HOLD,时间过后该进程再继续运行。
第二个 采用Timer方法
Timer控件 Timer.Enabled 属性用于设置是否启用定时器 Timer.Interval 属性,事件的间隔,单位毫秒 Timer.Elapsed 事件,达到间隔时发生。
例子:
public class Timer1
{
public static void Main()
{
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed+=new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 5 seconds.
aTimer.Interval=5000;
aTimer.Enabled=true;
Console.WriteLine("Press \'q\' to quit the sample.");
while(Console.Read()!='q');
}
// Specify what you want to happen when the Elapsed event is raised.
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{ Console.WriteLine("Hello World!");
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Theading.Thread.Sleep(6*1000); 用这种方式延迟6秒可以不?
更多追问追答
追问
我是菜鸟。。求具体。。
追答
for(int i=0;i<100;i++)
{
// 你自己的代码
System.Theading.Thread.Sleep(6*1000);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Threading.Thread.Sleep(6*1000);
更多追问追答
追问
没延时效果。。
追答
楼上的没错,字打错了
for(int i=0;i<100;i++)
{
// 你自己的代码
System.Threading.Thread.Sleep(60000);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询