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

◆ GetDaysInYear() [2/2]

override int System.Globalization.PersianCalendar.GetDaysInYear ( int year,
int era )
inline

Definition at line 210 of file PersianCalendar.cs.

211 {
212 CheckYearRange(year, era);
213 if (year == 9378)
214 {
215 return s_daysToMonth[9] + 13;
216 }
217 if (!IsLeapYear(year, 0))
218 {
219 return 365;
220 }
221 return 366;
222 }
static void CheckYearRange(int year, int era)
override bool IsLeapYear(int year, int era)

References System.Globalization.PersianCalendar.CheckYearRange(), System.Globalization.PersianCalendar.IsLeapYear(), System.Globalization.PersianCalendar.s_daysToMonth, and System.year.