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.
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1