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

◆ Equals() [2/3]

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

Definition at line 1387 of file TimeZoneInfo.cs.

1388 {
1389 if (other != null && string.Equals(_id, other._id, StringComparison.OrdinalIgnoreCase))
1390 {
1391 return HasSameRules(other);
1392 }
1393 return false;
1394 }
bool HasSameRules(TimeZoneInfo other)
bool Equals([NotNullWhen(true)] TimeZoneInfo? other)
readonly string _id

References System.TimeZoneInfo._id, System.TimeZoneInfo.Equals(), System.TimeZoneInfo.HasSameRules(), and System.other.

Referenced by System.TimeZoneInfo.Equals(), System.TimeZoneInfo.Equals(), System.TimeZoneInfo.FindSystemTimeZoneById(), and System.TimeZoneInfo.TryGetTimeZoneFromLocalMachine().