i need your help to learn Quartz.Net. But every sample is the same as each other. i want to startTime: 07.03.2012 13:28:10 but not working. Not return error code.how to start th
Quartz.Net expects that you pass in dates and times in UTC. Try changing this line:
parsedStartTime
to
parsedStartTime.ToUniversalTime())
or, make sure that parsedStartTime is in UTC before passing it in.