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

◆ GetTerrestrialBranch()

int System.Globalization.EastAsianLunisolarCalendar.GetTerrestrialBranch ( int sexagenaryYear)
inlineinherited

Definition at line 66 of file EastAsianLunisolarCalendar.cs.

67 {
68 if (sexagenaryYear < 1 || sexagenaryYear > 60)
69 {
70 throw new ArgumentOutOfRangeException("sexagenaryYear", sexagenaryYear, SR.Format(SR.ArgumentOutOfRange_Range, 1, 60));
71 }
72 return (sexagenaryYear - 1) % 12 + 1;
73 }

References System.SR.ArgumentOutOfRange_Range, and System.SR.Format().