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

◆ Equals() [1/2]

bool System.TimeZoneInfo.AdjustmentRule.Equals ( [NotNullWhen(true)] AdjustmentRule? other)
inline

Definition at line 69 of file TimeZoneInfo.cs.

70 {
71 if (other != null && _dateStart == other._dateStart && _dateEnd == other._dateEnd && _daylightDelta == other._daylightDelta && _baseUtcOffsetDelta == other._baseUtcOffsetDelta && _daylightTransitionEnd.Equals(other._daylightTransitionEnd))
72 {
73 return _daylightTransitionStart.Equals(other._daylightTransitionStart);
74 }
75 return false;
76 }
readonly TransitionTime _daylightTransitionEnd
readonly TimeSpan _baseUtcOffsetDelta
readonly TransitionTime _daylightTransitionStart
override bool Equals([NotNullWhen(true)] object? obj)

References System.TimeZoneInfo.AdjustmentRule._baseUtcOffsetDelta, System.TimeZoneInfo.AdjustmentRule._dateEnd, System.TimeZoneInfo.AdjustmentRule._dateStart, System.TimeZoneInfo.AdjustmentRule._daylightDelta, System.TimeZoneInfo.AdjustmentRule._daylightTransitionEnd, System.TimeZoneInfo.AdjustmentRule._daylightTransitionStart, System.TimeZoneInfo.TransitionTime.Equals(), and System.other.