C# Sharp Exercises: 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:

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.
- Exercises: Weekly Top 12 Most Popular Topics
- Pandas DataFrame: Exercises, Practice, Solution
- Conversion Tools
- JavaScript: HTML Form Validation
- SQL Exercises, Practice, Solution - SUBQUERIES
- C Programming Exercises, Practice, Solution : For Loop
- Python Exercises, Practice, Solution
- Python Data Type: List - Exercises, Practice, Solution
- C++ Basic: Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - exercises on Employee Database
- SQL Exercises, Practice, Solution - exercises on Movie Database
- SQL Exercises, Practice, Solution - exercises on Soccer Database
- C Programming Exercises, Practice, Solution : Recursion