C# System.Timers Demo

Posted fred1987

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# System.Timers Demo相关的知识,希望对你有一定的参考价值。

static void Main(string[] args)
        {
            SystemTimersDemo();
            Console.ReadLine();
        }

        static void SystemTimersDemo()
        {
            System.Timers.Timer timer = new System.Timers.Timer(1000);
            timer.Elapsed += Timer_Elapsed;
            timer.AutoReset = true;
            timer.Enabled = true;
        }

        private static void Timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
        {
            Console.WriteLine($"The Elapsed event was raised at {e.SignalTime.ToString("yyyyMMddHHmmssffff")}");
        }

 

以上是关于C# System.Timers Demo的主要内容,如果未能解决你的问题,请参考以下文章

[C#]System.Timers.Timer

如何在 C# 中创建计时器而不使用 System.Timers.Timer 或 System.Threading.Timer

C# system.timers.timer 奇怪的行为

通过C#的System.Timers.Timer封装一个定时任务工具

c#中利用system.timers多线程做图像处理,图像保存时提示“GDI+ 中发生一般性错误”,如何解决?

使用System.Timers.Timer类实现程序定时执行