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

◆ HijriAdjustment

int System.Globalization.HijriCalendar.HijriAdjustment
getset

Definition at line 31 of file HijriCalendar.cs.

32 {
33 get
34 {
35 if (_hijriAdvance == int.MinValue)
36 {
38 }
39 return _hijriAdvance;
40 }
41 set
42 {
43 if (value < -2 || value > 2)
44 {
45 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Bounds_Lower_Upper, -2, 2));
46 }
49 }
50 }

Referenced by System.Globalization.HijriCalendar.GetAbsoluteDateHijri(), and System.Globalization.HijriCalendar.GetDatePart().