_Type.IsSubclassOf(Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides COM objects with version-independent access to the IsSubclassOf(Type) method.
public:
bool IsSubclassOf(Type ^ c);
public bool IsSubclassOf (Type c);
abstract member IsSubclassOf : Type -> bool
Public Function IsSubclassOf (c As Type) As Boolean
Parameters
Returns
true
if the Type represented by the c
parameter and the current Type represent classes, and the class represented by the current Type derives from the class represented by c
; otherwise, false
. This method also returns false
if c
and the current Type represent the same class.
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The Type.IsSubclassOf method determines whether the class represented by the current Type derives from the class represented by the specified Type.