是否有在特定时间触发的事件?

发布于 2024-10-01 19:45:27 字数 72 浏览 3 评论 0原文

是否有一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

策马西风 2024-10-08 19:45:27

看看 Quartz.net

这是一个很棒的 .net 调度库。

Take a look at Quartz.net.

It's a great scheduling library for .net.

潦草背影 2024-10-08 19:45:27

不完全是,但您可以使用计时器并检查是否已经是 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

逆蝶 2024-10-08 19:45:27

您可以使用 Quartz.NET 在指定时间运行方法。

You can use Quartz.NET to run a method at specified time.

伏妖词 2024-10-08 19:45:27

如果您想要一个调度程序,您可以使用名为 Quartz.net 的第三方库

If you want a scheduler you can use a 3rd party library called Quartz.net

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文