Q:

Write a C# Sharp program to compare DateTime objects

0

 Write a C# Sharp program to compare DateTime objects. 

Expected Output:

                                                                               
The result of comparing DateTime object one and two is: False.                   
The result of comparing DateTime object one and three is: True. 

All Answers

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

using System;
public class Example20
{
    public static void Main()
    {
        // Create some DateTime objects.
        DateTime one = DateTime.UtcNow;

        DateTime two = DateTime.Now;

        DateTime three = one;

        // Compare the DateTime objects and display the results.
        bool result = one.Equals(two);

        Console.WriteLine("The result of comparing DateTime object one and two is: {0}.", result);

        result = one.Equals(three);

        Console.WriteLine("The result of comparing DateTime object one and three is: {0}.", result);
    }
}

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