asp.net.ph

DateTime.Equals Method ( DateTime, DateTime )

System Namespace   DateTime Structure


Returns a value indicating whether two instances of DateTime are equal.

[ VB ]
<Serializable>
Overloads Public Shared Function Equals ( _
   ByVal t1 As DateTime, _
   ByVal t2 As DateTime _
} As Boolean

[ C# ]
[ Serializable ]
public static bool Equals (
   DateTime t1,
   DateTime t2
};

[ C++ ]
[ Serializable ]
public: static bool Equals (
   DateTime t1,
   DateTime t2
};

[ JScript ]
public Serializable
static function Equals (
   t1 : DateTime,
   t2 : DateTime
} : Boolean;

Parameters

t1
The first DateTime.
t2
The second DateTime.

Return Value

true if the two DateTime values are equal; otherwise, false.

Example

The below code snippet demonstrates using the Equals method.

System.DateTime today1 =
      new System.DateTime ( System.DateTime.Today.Ticks );
System.DateTime today2 =
      new System.DateTime ( System.DateTime.Today.Ticks );
System.DateTime tomorrow =
      new 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 );
  C# VB

See Also

DateTime Members   DateTime.Equals Overload List   Boolean   Compare   CompareTo Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph