C# .net 定时器,多线程实现定时器

该示例展示了如何在C#中使用线程和定时器来实现定时任务。通过定义`Timer_Seconds`和`Timer_AtSpecificTimes`方法,程序可以在指定秒数后或特定时间执行任务。`dowork`方法作为实际的任务操作,在达到设定时间后被调用。
摘要由CSDN通过智能技术生成
using System;
using System.Threading;

namespace TimerRunDemo
{
    class Program
    {
        /// <summary>  
        /// 声明一个线程实例  
        /// </summary>  
        public static Thread mythread;

        #region 计算剩余时间
        private static int CompareDate(string synchroDateStr)
        {
            long nowDT = DateTime.Now.Ticks / 10000;
            DateTime synchroDate = Convert.ToDateTime(synchroDateStr);
            long synchroDT = synchroDate.Ticks / 10000;
            int sleepDT = -1;
            if (synchroDT > nowDT)
            {
                sleepDT = Convert.ToInt32(synchroDT - nowDT);
            }
            if (sleepDT != -1)
            {
                Console.WriteLine("当前时间的毫秒数:" + nowDT);
                Console.WriteLine("执行同步的时间的毫秒数:" + synchroDT);
                Console.WriteLine("剩余时间的毫秒数:" + sleepDT);
                Console.WriteLine("
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值