Laxminarayan
Laxminarayan

Reputation: 95

How to schedule a c# application?

I have developed one birthday reminder application. i wanted to schedule this application to run in every 1 hour.

Upvotes: 0

Views: 235

Answers (3)

I'm a bit late, but you can use Quartz .Net library.

Upvotes: 0

Jeff
Jeff

Reputation: 1649

I would make it a console application or service application and use the windows task scheduler to schedule it to run hourly. Make sure you have error handling to alert you in case if fails for some reason.

Upvotes: 2

Daniel Mann
Daniel Mann

Reputation: 58980

Use the Windows task scheduler.

Upvotes: 10

Related Questions