HangfireIO / Cronos

A fully-featured .NET library for working with Cron expressions. Built with time zones in mind and intuitively handles daylight saving time transitions
MIT License
974 stars 114 forks source link

Support for different calendars #32

Closed ghominejad closed 3 years ago

ghominejad commented 3 years ago

It seems Cronos only supports Gregorian calendar, Do you have any workaround to use different calendars with Cronos?

Is supporting for other calendars in you future plans?

odinserj commented 3 years ago

Yes, only Gregorian is supported. Do you have any examples of Cron parsers which support other calendars?

ghominejad commented 3 years ago

No but maybe I could help to implement it.

I saw you've implemented calendar specific things inside the CalendarHelper class while .Net has already implemented GregorianCalendar.

Is this because of performance reasons?