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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version