6 references to MinLunisolarYear
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Globalization\ChineseLunisolarCalendar.cs (6)
244
internal override int MinCalendarYear =>
MinLunisolarYear
;
256
if (lunarYear <
MinLunisolarYear
|| lunarYear > MaxLunisolarYear)
258
throw new ArgumentOutOfRangeException("year", lunarYear, SR.Format(SR.ArgumentOutOfRange_Range,
MinLunisolarYear
, MaxLunisolarYear));
261
return s_yinfo[lunarYear -
MinLunisolarYear
, index];
275
if (year <
MinLunisolarYear
|| year > MaxLunisolarYear)
277
throw new ArgumentOutOfRangeException(nameof(year), year, SR.Format(SR.ArgumentOutOfRange_Range,
MinLunisolarYear
, MaxLunisolarYear));