NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DateTime.Equals (Object)

Determines whether this DateTime represents the same time as a specified object.

[Visual Basic]
Overloads Overrides Public Function Equals( _
   ByVal value As Object _
) As Boolean
[C#]
public override bool Equals(
   object value
);
[C++]
public: override bool Equals(
   Object* value
);
[JScript]
public override function Equals(
   value : Object
) : Boolean;

Parameters

value
An object.

Return Value

true if this instance is a boxed DateTime and its value is equal to the value of this instance; otherwise, false.

Remarks

The Equals method compares a DateTime value with a specified object to determine whether they are same time, and returns a Boolean value indicating result.

See Also

DateTime Structure | DateTime Members | System Namespace | DateTime.Equals Overload List | Boolean