DateTime.op_Equality Method
.NET Framework 3.0
Determines whether two specified instances of DateTime are equal.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: