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.