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

◆ TwoDigitYearMax

override int System.Globalization.UmAlQuraCalendar.TwoDigitYearMax
getset

Definition at line 40 of file UmAlQuraCalendar.cs.

41 {
42 get
43 {
44 if (_twoDigitYearMax == -1)
45 {
46 _twoDigitYearMax = Calendar.GetSystemTwoDigitYearSetting(ID, 1451);
47 }
48 return _twoDigitYearMax;
49 }
50 set
51 {
52 if (value != 99 && (value < 1318 || value > 1500))
53 {
54 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 1318, 1500));
55 }
58 }
59 }