Table of Contents

Method IsSubclassOf

Namespace
Microsoft.Samples.Debugging.CorMetadata
Assembly
corapi.dll

IsSubclassOf(Type)

Determines whether the current Type derives from the specified Type.

public override bool IsSubclassOf(Type c)

Parameters

c Type

The type to compare with the current type.

Returns

bool

true if the current Type derives from c; otherwise, false. This method also returns false if c and the current Type are equal.

Exceptions

ArgumentNullException

c is null.