[C#]System.Timers.Timer

前端之家收集整理的这篇文章主要介绍了[C#]System.Timers.Timer前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

摘要

一个例子

Main( timer = += timer.AutoReset </span>= <span style="color: #0000ff;"&gt;true</span><span style="color: #000000;"&gt;; timer.Enabled </span>= <span style="color: #0000ff;"&gt;true</span><span style="color: #000000;"&gt;; timer.Interval </span>= <span style="color: #800080;"&gt;1000</span><span style="color: #000000;"&gt;; Console.Read(); } </span><span style="color: #0000ff;"&gt;private</span> <span style="color: #0000ff;"&gt;static</span> <span style="color: #0000ff;"&gt;void</span> timer_Elapsed(<span style="color: #0000ff;"&gt;object</span><span style="color: #000000;"&gt; sender,System.Timers.ElapsedEventArgs e) { Console.WriteLine(e.SignalTime.ToString()); } }</span></pre>

属性,如果你希望到时间了,不停的执行Elapsed事件,要将其设置为true。它的作用类似js中的setInterval方法,如果为false,类似于js中的setTimerout方法,只执行一次。

原文链接:https://www.f2er.com/csharp/191521.html

猜你在找的C#相关文章