using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
public static void Main()
//Your code goes here
List<DateTime> dtList = new List<DateTime>(){
DateTime.Now
};
Console.WriteLine("Before count " + dtList.Count());
dtList.Clear();
Console.WriteLine("After count " + dtList.Count());
}