Compare two DateTime values : Email « Regular Expressions « C# / C Sharp






Compare two DateTime values

 
using System;

public class Application
{
    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);
    }
}

   
  








Related examples in the same category

1.Use regular expression to check email format
2.Regular expression to match an email address
3.Is email by regular expression