using System;
using System.Threading;

class Program
{
    static void Main()
    {
        Timer timer = new Timer(new TimerCallback(DoTask), null, TimeSpan.Zero, TimeSpan.FromSeconds(3));

        Console.WriteLine("Main thread is working...");

        Console.ReadKey();
    }

    static void DoWork(object state)
    {
        Console.WriteLine("Thread from thread pool is working...");
        Thread.Sleep(2000); // 模拟耗时操作
        Console.WriteLine("Thread from thread pool finished.");
    }

    static void DoTask(object state)
    {
        ThreadPool.QueueUserWorkItem(new WaitCallback(DoWork), null);
        Console.WriteLine($"Task started at {DateTime.Now}");
    }
}

在上面的代码中,首先创建了一个Timer实例,设置了初始延迟为0秒,间隔时间为3秒,当定时器触发时会调用DoTask方法。

在DoTask方法中,调用ThreadPool.QueueUserWorkItem方法将DoWork方法添加到线程池中执行,并输出任务开始的时间。

运行程序后,可以看到每隔3秒线程池中的线程会执行任务,并输出任务开始的时间。

06-06 22:59