DateTime.Equality Operator
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Determines whether two specified instances of DateTime are equal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
- Type: System.DateTime
The first object to compare.
- d2
- Type: System.DateTime
The second object to compare.
Return Value
Type: System.Booleantrue if d1 and d2 represent the same date and time; otherwise, false.
The following example demonstrates the equality operator.
Dim april19 As New DateTime(2001, 4, 19) Dim otherDate As New DateTime(1991, 6, 5) Dim areEqual As Boolean ' areEqual gets false. areEqual = System.DateTime.op_Equality(april19, otherDate) otherDate = New DateTime(2001, 4, 19) ' areEqual gets true. areEqual = System.DateTime.op_Equality(april19, otherDate)
Show: