C# TimeZoneInfo GetType
Description
TimeZoneInfo GetType
gets the Type of the current instance.
Syntax
TimeZoneInfo.GetType
has the following syntax.
public Type GetType()
Returns
TimeZoneInfo.GetType
method returns The exact runtime type of the current instance.
Example
using System;// ww w. ja v a 2s . c o m
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.GetType());
}
}
}
The code above generates the following result.