5 references to MaxLunisolarYear
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Globalization\ChineseLunisolarCalendar.cs (5)
246internal override int MaxCalendarYear => MaxLunisolarYear; 256if (lunarYear < MinLunisolarYear || lunarYear > MaxLunisolarYear) 258throw new ArgumentOutOfRangeException("year", lunarYear, SR.Format(SR.ArgumentOutOfRange_Range, MinLunisolarYear, MaxLunisolarYear)); 275if (year < MinLunisolarYear || year > MaxLunisolarYear) 277throw new ArgumentOutOfRangeException(nameof(year), year, SR.Format(SR.ArgumentOutOfRange_Range, MinLunisolarYear, MaxLunisolarYear));