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.





















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