2 overrides of IsValidYear
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Globalization\GregorianCalendar.cs (1)
269internal override bool IsValidYear(int year, int era) => year >= 1 && year <= MaxYear;
src\libraries\System.Private.CoreLib\src\System\Globalization\JapaneseCalendar.cs (1)
252internal override bool IsValidYear(int year, int era)
1 reference to IsValidYear
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\Calendar.cs (1)
617return IsValidYear(year, era) && month >= 1 && month <= GetMonthsInYear(year, era);