DateTime.Equals Method (DateTime, DateTime)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a value indicating whether two DateTime instances have the same date and time value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- t1
- Type: System.DateTime
The first object to compare.
- t2
- Type: System.DateTime
The second object to compare.
The following example demonstrates the Equals method.
Dim today1 As New System.DateTime(System.DateTime.Today.Ticks) Dim today2 As New System.DateTime(System.DateTime.Today.Ticks) Dim tomorrow As New System.DateTime( _ System.DateTime.Today.AddDays(1).Ticks) ' todayEqualsToday gets true. Dim todayEqualsToday As Boolean = System.DateTime.Equals(today1, today2) ' todayEqualsTomorrow gets false. Dim todayEqualsTomorrow As Boolean = System.DateTime.Equals(today1, tomorrow)
Show: