gpt4 book ai didi

c# - 我需要添加什么才能使用 "using System.Timers;"?

转载 作者:行者123 更新时间:2023-11-30 20:36:56 28 4
gpt4 key购买 nike

我在 xamarin 表单中工作,我需要使用这个程序集(使用 System.Timers;)但是当我现在编写它时它没有找到计时器。我需要添加一个包吗?

我想这样使用它:

       var timer = new Timer (1000);
timer.Elapsed += OnTimerElapsed;
timer.Start ();

public static void OnTimerElapsed(object o, ElapsedEventArgs e)
{
//code
}

最佳答案

你想在PCL项目中使用Timer类吗?如果是这样,您将不得不使用 Device.StartTimer

Device.StartTimer (new TimeSpan (0, 0, 60), () => {
// do something every 60 seconds
return true; // runs again, or false to stop
});

关于c# - 我需要添加什么才能使用 "using System.Timers;"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36559156/

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