Determines whether the current Type is a subclass of the specified class.
[Visual Basic] Overridable Public Function IsSubclassOf( _ ByVal c As Type _ ) As Boolean [C#] public virtual bool IsSubclassOf( Type c ); [C++] public: virtual bool IsSubclassOf( Type* c ); [JScript] public function IsSubclassOf( c : Type ) : Boolean;
true if the current Type is a direct or indirect subclass of c; otherwise, false.
This method can be overridden by a derived class.