GetTimeZoneInformation

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.U4)]
public static extern uint GetTimeZoneInformation(
   out TIME_ZONE_INFORMATION lpTimeZoneInformation
);

Microsoft documentation: Link

Last updated