The static TimeZone.CurrentTimeZone method returns a TimeZone object based on the current local settings

image_pdfimage_print
   
  


using System;
public class MainClass {
    public static void Main() {
        TimeZone zone = TimeZone.CurrentTimeZone;
        Console.WriteLine(zone.StandardName);
        Console.WriteLine(zone.DaylightName);

    }
}