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

◆ GetYearInfo()

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

Definition at line 181 of file TaiwanLunisolarCalendar.cs.

182 {
183 if (lunarYear < 1912 || lunarYear > 2050)
184 {
185 throw new ArgumentOutOfRangeException("year", lunarYear, SR.Format(SR.ArgumentOutOfRange_Range, 1912, 2050));
186 }
187 return s_yinfo[lunarYear - 1912, index];
188 }

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