DateTime::Equals Method (DateTime, DateTime)
Updated: December 2010
Returns a value indicating whether two instances of DateTime are equal.
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.
System::DateTime today1 = System::DateTime( System::DateTime::Today.Ticks ); System::DateTime today2 = System::DateTime( System::DateTime::Today.Ticks ); System::DateTime tomorrow = System::DateTime( System::DateTime::Today.AddDays( 1 ).Ticks ); // todayEqualsToday gets true. bool todayEqualsToday = System::DateTime::Equals( today1, today2 ); // todayEqualsTomorrow gets false. bool todayEqualsTomorrow = System::DateTime::Equals( today1, tomorrow );
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.