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 (Type)

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

[Visual Basic]
Overloads Shadows Public Function Equals( _
   ByVal o As Type _
) As Boolean
[C#]
public new bool Equals(
   Type o
);
[C++]
public: new bool Equals(
   Type* o
);
[JScript]
public new function Equals(
   o : Type
) : Boolean;

Parameters

o
The Type 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