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

◆ IsValidYear()

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

Definition at line 142 of file Helpers.cs.

143 {
144 if (year >= calendar.GetYear(calendar.MinSupportedDateTime))
145 {
146 return year <= calendar.GetYear(calendar.MaxSupportedDateTime);
147 }
148 return false;
149 }

References System.Globalization.Calendar.GetYear(), System.Globalization.Calendar.MaxSupportedDateTime, System.Globalization.Calendar.MinSupportedDateTime, and System.year.