gpt4 book ai didi

c# - 如何检查是否已超过 30 天?

转载 作者:行者123 更新时间:2023-11-30 19:40:34 25 4
gpt4 key购买 nike

如何检查自用户首次打开我的应用程序以来是否已过去 30 天? 30 天过去后,应用程序应该做一些事情,例如:备份数据、发送邮件等。我想将 30 天计时器重置为 0,并在 30 天后再次检查。

最佳答案

是的,您可以在 IsolatedStorageSettings 的帮助下完成。您可以在 IsolatedStorageSettings Application_Launching 中保存首次启动日期。在您的 App.xaml.cs 中添加以下内容,希望这对您有帮助

private void Application_Launching(object sender, LaunchingEventArgs e)
{
IsolatedStorageSettings userSettings = IsolatedStorageSettings.ApplicationSettings;
//Save first launch date
if (!userSettings.Contains("Date"))
{
userSettings.Add("Date", DateTime.Now.Date);
}
else
{
DateTime saveDate = Convert.ToDateTime(userSettings["Date"]);
double days = (DateTime.Now.Date - saveDate).TotalDays;
if (days > 30)
{
//Do you work
//remove userSettings for reset settings
userSettings.Remove("Date");
}
}
userSettings.Save();
}

关于c# - 如何检查是否已超过 30 天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22680868/

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