system\globalization\calendar.cs (8)
400return (GetDaysInMonth(year, month, CurrentEra));
414return (GetDaysInYear(year, CurrentEra));
474return (GetMonthsInYear(year, CurrentEra));
685return (IsLeapDay(year, month, day, CurrentEra));
699return (IsLeapMonth(year, month, CurrentEra));
715return (GetLeapMonth(year, CurrentEra));
744return (IsLeapYear(year, CurrentEra));
758return (ToDateTime(year, month, day, hour, minute, second, millisecond, CurrentEra));
system\globalization\hebrewcalendar.cs (8)
435if (era != CurrentEra && era != HebrewEra) {
677while (i > (monthsInYear = GetMonthsInYear(y, CurrentEra))) {
687while (months > (monthsInYear = GetMonthsInYear(y, CurrentEra))) {
691monthsInYear = GetMonthsInYear(y, CurrentEra);
729CheckHebrewYearValue(y, Calendar.CurrentEra, "years");
731int months = GetMonthsInYear(y, CurrentEra);
799beginOfYearDate = ToDateTime(year, 1, 1, 0, 0, 0, 0, CurrentEra);
884} else if (IsLeapYear(year, Calendar.CurrentEra)) {