Date Time C#

using System;
using System.Collections.ObjectModel;
using System.Collections.Generic;
public class Example
{
    public static void Main()
    {
        ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones();
        Console.WriteLine("The local system has the following {0} time zones", zones.Count);
        foreach (TimeZoneInfo zone in zones)
            Console.WriteLine(zone.Id);
    }
}