TimeZoneInfo::Equals Method (TimeZoneInfo)
Determines whether the current TimeZoneInfo object and another TimeZoneInfo object are equal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- other
- Type: System::TimeZoneInfo
A second object to compare with the current object.
Implements
IEquatable<T>::Equals(T)Equality is based on a comparison of values. Two TimeZoneInfo objects are considered to be equal under the following conditions:
The value of their Id property is the same.
They have the same adjustment rules.
TimeZoneInfo::Equals(TimeZoneInfo) returns the Boolean value that results from evaluating the following expression:
[C#]
other.Id == this.Id && HasSameRules(other);
[Visual Basic]
other.Id = me.Id AndAlso HasSameRules(other)
If the other parameter is an uninitialized TimeZoneInfo object, this method returns false.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.