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