HI,
I recently downloaded the latest version of DayPilot Pro to make use of the Recurrent Events feature. After going through the NCron classes, I noticed that when I buld a rule for Bi-weekly events, the "/" is ignored. For example, I created a rule to run every second monday at midnight. The .ToCron method returned the following cron string: 0 0 * * 1/2. But when i parse that string using theConTabSchedule.parse method, it returns 0 0 * * 1,3,5 which translates to midnight of every monday, wednesday & friday of every week.
How can a bi-weekly string be built?
Thanks