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!

Type.Equals (Object)

Determines if the underlying system type of the current Type is the same as the underlying system type of the specified Object.

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

Parameters

o
The Object whose underlying system type is to be compared with the underlying system type of the current Type.

Return Value

true if the underlying system type of o is the same as the underlying system type of the current Type; otherwise, false.

See Also

Type Class | Type Members | System Namespace | Type.Equals Overload List | UnderlyingSystemType