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

◆ GetCelestialStem()

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

Definition at line 57 of file EastAsianLunisolarCalendar.cs.

58 {
59 if (sexagenaryYear < 1 || sexagenaryYear > 60)
60 {
61 throw new ArgumentOutOfRangeException("sexagenaryYear", sexagenaryYear, SR.Format(SR.ArgumentOutOfRange_Range, 1, 60));
62 }
63 return (sexagenaryYear - 1) % 10 + 1;
64 }

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