Click or drag to resize
TypeEquals Method (Object)
Determines if the underlying system type of the current Type is the same as the underlying system type of the specified Object.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public override bool Equals(
	Object o
)

Parameters

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

Return Value

Type: Boolean
true if the underlying system type of o is the same as the underlying system type of the current Type; otherwise, false. This method also returns false if the object specified by the o parameter is not a Type.
See Also