src\libraries\System.Private.CoreLib\src\System\Globalization\Calendar.cs (8)
264return GetDaysInMonth(year, month, CurrentEra);
279return GetDaysInYear(year, CurrentEra);
318return GetMonthsInYear(year, CurrentEra);
508return IsLeapDay(year, month, day, CurrentEra);
523return IsLeapMonth(year, month, CurrentEra);
539return GetLeapMonth(year, CurrentEra);
572return IsLeapYear(year, CurrentEra);
587return ToDateTime(year, month, day, hour, minute, second, millisecond, CurrentEra);
src\libraries\System.Private.CoreLib\src\System\Globalization\HebrewCalendar.cs (8)
341if (era != CurrentEra && era != HebrewEra)
539while (i > (monthsInYear = GetMonthsInYear(y, CurrentEra)))
553while (months > (monthsInYear = GetMonthsInYear(y, CurrentEra)))
558monthsInYear = GetMonthsInYear(y, CurrentEra);
586CheckHebrewYearValue(y, CurrentEra, nameof(years));
588int months = GetMonthsInYear(y, CurrentEra);
647beginOfYearDate = ToDateTime(year, 1, 1, 0, 0, 0, 0, CurrentEra);
714else if (IsLeapYear(year, CurrentEra))