DateTime.op_Equality Method
.NET Framework 2.0
Determines whether two specified instances of DateTime are equal.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
J# does not support overloaded operators.
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- d1
A DateTime.
- d2
A DateTime.
Return Value
true if d1 and d2 represent the same date and time; otherwise, false.The following code example demonstrates the equality operator.
System::DateTime april19( 2001, 4, 19 ); System::DateTime otherDate( 1991, 6, 5 ); // areEqual gets false. bool areEqual = april19 == otherDate; otherDate = DateTime( 2001, 4, 19 ); // areEqual gets true. areEqual = april19 == otherDate;
System.DateTime april19 = new DateTime(2001, 4, 19); System.DateTime otherDate = new DateTime(1991, 6, 5); // areEqual gets false. boolean areEqual = april19 == otherDate; otherDate = new DateTime(2001, 4, 19); // areEqual gets true. areEqual = april19 == otherDate;
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: