Date Time C#

using System;
using System.Collections.ObjectModel;
public class Example
{
   public static void Main()
   {
        ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones();
        foreach(TimeZoneInfo zone in zones)
        {
           if (! zone.SupportsDaylightSavingTime)
              Console.WriteLine(zone.DisplayName);
        }
   }
}