Reputation: 33
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#?
Upvotes: 1
Views: 1653
Reputation: 30117
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
Upvotes: 2