C# TimeZoneInfo GetHashCode
Description
TimeZoneInfo GetHashCode
serves as a hash function for
hashing algorithms and data structures such as hash tables.
Syntax
TimeZoneInfo.GetHashCode
has the following syntax.
public override int GetHashCode()
Returns
TimeZoneInfo.GetHashCode
method returns A 32-bit signed integer that serves as the hash code for this TimeZoneInfo
object.
Example
/* w ww . j a va 2 s . co m*/
using System;
using System.Globalization;
using System.IO;
using System.Collections.ObjectModel;
public class Example
{
public static void Main()
{
DateTimeFormatInfo dateFormats = CultureInfo.CurrentCulture.DateTimeFormat;
ReadOnlyCollection<TimeZoneInfo> timeZones = TimeZoneInfo.GetSystemTimeZones();
foreach (TimeZoneInfo timeZone in timeZones)
{
Console.WriteLine(timeZone.GetHashCode());
}
}
}
The code above generates the following result.