Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetYearInfo()

override int System.Globalization.KoreanLunisolarCalendar.GetYearInfo ( int lunarYear,
int index )
inlinepackage

Definition at line 1170 of file KoreanLunisolarCalendar.cs.

1171 {
1172 if (lunarYear < 918 || lunarYear > 2050)
1173 {
1174 throw new ArgumentOutOfRangeException("year", lunarYear, SR.Format(SR.ArgumentOutOfRange_Range, 918, 2050));
1175 }
1176 return s_yinfo[lunarYear - 918, index];
1177 }

References System.SR.ArgumentOutOfRange_Range, System.SR.Format(), System.index, and System.Globalization.KoreanLunisolarCalendar.s_yinfo.