TimeZoneInfo.Equals Method (TimeZoneInfo)
Determines whether the current TimeZoneInfo object and another TimeZoneInfo object are equal.
Namespace: System
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.
The following example uses the Equals(TimeZoneInfo) method to determine whether the local time zone is Pacific Time or Eastern Time.
TimeZoneInfo thisTimeZone, zone1, zone2; thisTimeZone = TimeZoneInfo.Local; zone1 = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); zone2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); Console.WriteLine(thisTimeZone.Equals(zone1)); Console.WriteLine(thisTimeZone.Equals(zone2));
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.