gpt4 book ai didi

c# - 每 x 分钟调用一个方法

转载 作者:IT王子 更新时间:2023-10-29 03:36:43 26 4
gpt4 key购买 nike

我想每 5 分钟调用一些方法。我该怎么做?

public class Program
{
static void Main(string[] args)
{
Console.WriteLine("*** calling MyMethod *** ");
Console.ReadLine();
}

private MyMethod()
{
Console.WriteLine("*** Method is executed at {0} ***", DateTime.Now);
Console.ReadLine();
}
}

最佳答案

var startTimeSpan = TimeSpan.Zero;
var periodTimeSpan = TimeSpan.FromMinutes(5);

var timer = new System.Threading.Timer((e) =>
{
MyMethod();
}, null, startTimeSpan, periodTimeSpan);

编辑 - 此答案已过时。参见 https://stackoverflow.com/a/70887955/426894

关于c# - 每 x 分钟调用一个方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13019433/

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