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

◆ IsValidMonth()

static bool Internal.Cryptography.Helpers.IsValidMonth ( this Calendar calendar,
int year,
int month,
int era )
inlinestaticprivate

Definition at line 133 of file Helpers.cs.

134 {
135 if (calendar.IsValidYear(year, era) && month >= 1)
136 {
137 return month <= calendar.GetMonthsInYear(year, era);
138 }
139 return false;
140 }

References System.Globalization.Calendar.GetMonthsInYear(), System.Globalization.Calendar.IsValidYear(), and System.year.