This documentation is archived and is not being maintained.
DateTime::Equals Method (DateTime, DateTime)
Visual Studio 2010
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.
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 SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: