C# TimeZoneInfo Utc
Description
TimeZoneInfo Utc
gets a TimeZoneInfo object that represents
the Coordinated Universal Time (UTC) zone.
Syntax
TimeZoneInfo.Utc
has the following syntax.
public static TimeZoneInfo Utc { get; }
Example
The following example retrieves a TimeZoneInfo object that represents Coordinated Universal Time (UTC) and outputs its display name, standard time name, and daylight saving time name.
/* w w w . jav a 2 s .c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
TimeZoneInfo universalZone = TimeZoneInfo.Utc;
Console.WriteLine("The universal time zone is {0}.", universalZone.DisplayName);
Console.WriteLine("Its standard name is {0}.", universalZone.StandardName);
Console.WriteLine("Its daylight savings name is {0}.", universalZone.DaylightName);
}
}
The code above generates the following result.