我在我的Windows手机应用程序中应用了后台代理,我希望我的应用程序每1分钟运行一次。 因为我已经给了“FromMinutes(1)”但现在我想动态地传递时间 TimeSpan.FromMinutes()..想要动态传递1或10或15分钟
#if DEBUG
ScheduledActionService.LaunchForTest(task.Name, TimeSpan.FromSeconds(60));
#endif
现在我正在这样做
#if DEBUG
//myinput is the dynamic time given by the user, it varies form user to user.
int myinput = 10;
ScheduledActionService.LaunchForTest(task.Name, TimeSpan.FromMinutes(myinput));
#endif