public static void Main()
var nextOccurrence = CrontabSchedule.TryParse("0/5 * * * * *", new CrontabSchedule.ParseOptions() { IncludingSeconds = true });
var nexts = nextOccurrence.GetNextOccurrences(DateTime.Now, DateTime.Now.AddMonths(1)).Take(50);