Is it possible using the Quartz .NET assembly to generate a cron expression? I saw that the CronScheduleBuilder
class has a private member cronExpression
which is essentially what I am looking for. Is there any other way to get the cron expression itself?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
Possible using
ICronTrigger.CronExpressionString
Using Ian answer, I have created a small extension method. Hopefully it will be useful for someone else...