C# TimeZone StandardName
Description
TimeZone StandardName
gets the standard time zone name.
Syntax
TimeZone.StandardName
has the following syntax.
public abstract string StandardName { get; }
Example
The following example references and displays the StandardName property of the current time zone.
/*from w w w . j a v a 2 s .com*/
using System;
using System.Globalization;
class TimeZoneDemo
{
static void Main( )
{
// Get the local time zone and the current local time and year.
TimeZone localZone = TimeZone.CurrentTimeZone;
Console.WriteLine(localZone.StandardName );
Console.WriteLine(localZone.DaylightName );
}
}
The code above generates the following result.