C# TimeZone DaylightName

Description

TimeZone DaylightName gets the daylight saving time zone name.

Syntax

TimeZone.DaylightName has the following syntax.


public abstract string DaylightName { get; }

Example

The following example references and displays the DaylightName property of the current time zone.


/*ww  w  .  java  2s  .co m*/
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