是否有在特定时间触发的事件?
是否有一个 .NET 事件在特定时间(例如 19:00)触发,而不是在倒计时结束时触发的计时器?它可以用作调度程序来调用某些方法。
Is there a .NET event that fires at a specific time (eg. at 19:00) as opposed to timer which fires when the countdown finishes? It can be used as a scheduler to call certain method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看 Quartz.net。
这是一个很棒的 .net 调度库。
Take a look at Quartz.net.
It's a great scheduling library for .net.
不完全是,但您可以使用计时器并检查是否已经是 19:00 已过事件,然后触发所需的代码。
否则,您可以将代码放入任务计划程序中,使其在 19:00 执行
Not exactly but you can use timer and check if it is 19:00 already it its elapsed event and then fire the required code.
Otherwise you can put your code in Task Scheduler to get it executed at 19:00
您可以使用 Quartz.NET 在指定时间运行方法。
You can use Quartz.NET to run a method at specified time.
如果您想要一个调度程序,您可以使用名为 Quartz.net 的第三方库
If you want a scheduler you can use a 3rd party library called Quartz.net