Q:

Write a C# Sharp program that compares two dates

0

Write a C# Sharp program that compares two dates. 

Expected Output :

8/1/2016 12:00:00 AM is earlier than 8/1/2016 12:00:00 PM 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;

public class Example16
{
   public static void Main()
   {
      DateTime date1 = new DateTime(2016, 8, 1, 0, 0, 0);
      DateTime date2 = new DateTime(2016, 8, 1, 12, 0, 0);
      int result = DateTime.Compare(date1, date2);
      string relationship;

      if (result < 0)
         relationship = "is earlier than";
      else if (result == 0)
         relationship = "is the same time as";         
      else
         relationship = "is later than";

      Console.WriteLine("{0} {1} {2}", date1, relationship, date2);
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now