The Id property corresponds to the value passed to FindSystemTimeZoneById. : TimeZoneInfo : Development Class C# Source Code


Custom Search

C# Source Code » Development Class » TimeZoneInfo »

 

The Id property corresponds to the value passed to FindSystemTimeZoneById.








    
 

using System;
public class MainClass {
    public static void Main() {

        foreach (TimeZoneInfo z in TimeZoneInfo.GetSystemTimeZones())
            Console.WriteLine(z.Id);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Development Class
» TimeZoneInfo