Determines whether an instance of the specified type can be assigned to the current Type instance.
[Visual Basic] Overridable Public Function IsAssignableFrom( _ ByVal c As Type _ ) As Boolean [C#] public virtual bool IsAssignableFrom( Type c ); [C++] public: virtual bool IsAssignableFrom( Type* c ); [JScript] public function IsAssignableFrom( c : Type ) : Boolean;
true if an instance of c can be assigned to the current Type instance; otherwise, false.
This method can be overridden by a derived class.