Date Time C#

using System;
public class Application
{
    public static void Main()
    {
      System.DateTime april19 = new DateTime(2001, 4, 19);
      System.DateTime otherDate = new DateTime(2010, 6, 5);
      // areEqual gets false.
      bool areEqual = april19 == otherDate;
        
      otherDate = new DateTime(2001, 4, 19);
      // areEqual gets true.
      areEqual = april19 == otherDate;
    }
}