gpt4 book ai didi

c# - Xamarin PCL 中缺少 System.Timer

转载 作者:太空狗 更新时间:2023-10-29 20:54:09 25 4
gpt4 key购买 nike

我正在使用 .Net 4.5.1 构建一个针对 IOS Android 和 Windows Phone 8.1 的 Xamarin 跨平台应用程序。当我尝试在 PCL 项目中引用 System.Timers 时,它不存在。我该如何解决这个问题?

最佳答案

您可以使用:Device.StartTimer

语法:

public static void StartTimer (TimeSpan interval, Func<bool> callback)

示例:每 1 秒递增数字 1 分钟

int number = 0;
Device.StartTimer(TimeSpan.FromSeconds(1),() => {
number++;
if(number <= 60)
{
return true; //continue
}
return false ; //not continue

});

示例:WAITING 5 秒运行一次函数

Device.StartTimer(TimeSpan.FromSeconds(5),() => {
DoSomething();
return false ; //not continue
});

关于c# - Xamarin PCL 中缺少 System.Timer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31107459/

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