在 C# 中安排活动?
我有一个通过在线服务发送短信的应用程序。我的用户建议我实现一项为未来日期/时间安排消息或重复消息的功能。
有没有办法在 C# 中做到这一点?
I have an application that sends text messages through an online service. My users have suggested that I implement a feature of scheduling a message for a future date/time or a recurring message.
Is there a way to do this in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看Windows 任务计划程序,以便在将来的特定时间自动执行任务。您可以安排在特定时间发送消息,Windows 将为您完成剩下的工作
You can take a look at Windows Task Scheduler for automating tasks at a particular time in future. You can schedule your message sending at a particular time and Windows will do the rest for you
Quartz.net 是 .Net 的开源作业调度框架。
教程
Quartz.net is a open source job scheduling framework for .Net.
Tutorial