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!

TimeSpan.Equals (Object)

Determines whether the current TimeSpan and a specified object represent the same time.

[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
The value to compare with the current instance.

Return Value

true if value is a TimeSpan that represents the same time as the current instance; otherwise, false.

Remarks

The Equals method evaluates two TimeSpan objects and returns a Boolean determination of their relationship.

See Also

TimeSpan Structure | TimeSpan Members | System Namespace | TimeSpan.Equals Overload List | Object