The TimeZoneInfo class works in a similar manner. TimeZoneInfo.Local returns the current local time zone: : TimeZoneInfo « Date Time « C# / C Sharp






The TimeZoneInfo class works in a similar manner. TimeZoneInfo.Local returns the current local time zone:

  

using System;
public class MainClass {
    public static void Main() {
        TimeZoneInfo zone = TimeZoneInfo.Local;
        Console.WriteLine(zone.StandardName);
        Console.WriteLine(zone.DaylightName);
    }
}

   
  








Related examples in the same category

1.The Id property corresponds to the value passed to FindSystemTimeZoneById.
2.TimeZoneInfo also provides IsDaylightSavingTime and GetUtcOffset methods--the difference is that they accept either a DateTime or DateTimeOffset.
3.Week refers to the week of the month, with "5" meaning the last week.
4.Gets the time difference between the current time zone's standard time and Coordinated Universal Time (UTC).
5.Converts a time to the time in a particular time zone.
6.Converts a time from one time zone to another.
7.Converts a time from one time zone to another based on time zone identifiers.
8.Converts a Coordinated Universal Time (UTC) to the time in a specified time zone.
9.Converts the current date and time to Coordinated Universal Time (UTC).
10.Converts time in a specified time zone to Coordinated Universal Time (UTC).
11.Gets the localized general display name that represents the time zone.
12.Determines whether the current TimeZoneInfo object and another TimeZoneInfo object are equal.
13.Retrieves a TimeZoneInfo object from the registry based on its identifier.
14.Gets the time zone identifier.
15.whether a date and time in a time zone is ambiguous and can be mapped to two or more Coordinated Universal Time (UTC) times.
16.Whether a date and time falls in the range of daylight saving time
17.Gets a TimeZoneInfo object that represents the local time zone.
18.Get TimeZone Id, Display name, Standard name, and Daylight Name
19.Gets the localized display name for the time zone's standard time.
20.Gets a value indicating whether the time zone has any daylight saving time rules.
21.Gets a TimeZoneInfo object that represents the Coordinated Universal Time (UTC) zone.