The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
.NET Framework 4.5
Returns a value indicating whether this instance is equal to a specified object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Object
The object to compare to this instance.
Return Value
Type: System.Booleantrue if value is an instance of DateTime and equals the value of this instance; otherwise, false.
The following example demonstrates the Equals method.
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); } } // This code example displays the following: // // The result of comparing DateTime object one and two is: False. // The result of comparing DateTime object one and three is: True.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.