gpt4 book ai didi

c# - 程序连续运行 12 小时后如何运行函数?

转载 作者:太空宇宙 更新时间:2023-11-03 11:25:36 25 4
gpt4 key购买 nike

程序连续运行 12 小时后,如何在我的程序上运行某个函数?

最佳答案

使用计时器:

        var timespan = new TimeSpan(12, 0, 0);
var timer = new System.Timers.Timer(timespan.TotalMilliseconds);
timer.Elapsed += (o, e) =>
{
// runs code here after 12 hours.
};
timer.Start();

关于c# - 程序连续运行 12 小时后如何运行函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9450676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com