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

◆ TwoDigitYearMax

override int System.Globalization.PersianCalendar.TwoDigitYearMax
getset

Definition at line 31 of file PersianCalendar.cs.

32 {
33 get
34 {
35 if (_twoDigitYearMax == -1)
36 {
37 _twoDigitYearMax = Calendar.GetSystemTwoDigitYearSetting(ID, 1410);
38 }
39 return _twoDigitYearMax;
40 }
41 set
42 {
44 if (value < 99 || value > 9378)
45 {
46 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 99, 9378));
47 }
49 }
50 }