asp.net.ph

DateTime.Equals Method ( Object )

System Namespace   DateTime Structure


Returns a value indicating whether this instance is equal to a specified object.

[ VB ]
<Serializable>
Overrides Overloads Public Function Equals ( _
   ByVal value As Object _
} As Boolean

[ C# ]
[ Serializable ]
public override bool Equals (
   object value
};

[ C++ ]
[ Serializable ]
public: bool Equals (
   Object* value
};

[ JScript ]
public Serializable
override function Equals (
   value : Object
} : Boolean;

Parameters

value
An object to compare with this instance.

Return Value

true if value is an instance of DateTime and equals the value of this instance; 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   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