gpt4 book ai didi

c# timer.elapsed?

转载 作者:太空狗 更新时间:2023-10-29 20:44:01 28 4
gpt4 key购买 nike

我已经包含了 System.Timers 包,但是当我输入时:

Timer.Elapsed; //its not working, the property elapsed is just not there.

我记得它在 VB.NET 中。为什么这行不通?

最佳答案

这不是属性(property)。 It's an event .

所以你必须提供一个事件处理程序,它会在每次计时器计时时执行。像这样:

public void CreateTimer() 
{
var timer = new System.Timers.Timer(1000); // fire every 1 second
timer.Elapsed += HandleTimerElapsed;
}

public void HandleTimerElapsed(object sender, ElapsedEventArgs e)
{
// do whatever it is that you need to do on a timer
}

关于c# timer.elapsed?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12754898/

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