w3resource

C#: Compares two dates

C# Sharp DateTime: Exercise-16 with Solution

Write a C# Sharp program that compares two dates.

Sample Solution:-

C# Sharp Code:

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);
   }
}

Sample Output:

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

Flowchart:

Flowchart: C# Sharp Exercises - Compares two dates

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to display the date of past and future fifteen years of a specified date.
Next: Write a C# Sharp program to create a date one year previously and the date one year in the future compare to the current date.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.




We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook