Mattman
Mattman

Reputation: 33

Schedule an event in 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#?

Upvotes: 1

Views: 1653

Answers (2)

Gerard
Gerard

Reputation: 2511

Quartz.net is a open source job scheduling framework for .Net.

Tutorial

Upvotes: 1

Haris Hasan
Haris Hasan

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

Related Questions