_Type.IsAssignableFrom(Type) Método

Definição

Fornece objetos COM com acesso independente de versão para o método IsAssignableFrom(Type).Provides COM objects with version-independent access to the IsAssignableFrom(Type) method.

public:
 bool IsAssignableFrom(Type ^ c);
public bool IsAssignableFrom (Type c);
abstract member IsAssignableFrom : Type -> bool
Public Function IsAssignableFrom (c As Type) As Boolean

Parâmetros

c
Type

O Type a ser comparado com o Type atual.The Type to compare with the current Type.

Retornos

Boolean

true se c e o Type atual representarem o mesmo tipo ou, se o Type atual estiver na hierarquia de herança de c ou, se o Type atual for uma interface que o c implementa ou, se c for um parâmetro de tipo genérico e o Type atual representar uma das restrições de c.true if c and the current Type represent the same type, or if the current Type is in the inheritance hierarchy of c, or if the current Type is an interface that c implements, or if c is a generic type parameter and the current Type represents one of the constraints of c. false se nenhuma dessas condições for o caso ou, se c for null.false if none of these conditions are the case, or if c is null.

Comentários

Este método é para acesso a classes gerenciadas de código não gerenciado e não deve ser chamado em código gerenciado.This method is for access to managed classes from unmanaged code, and should not be called from managed code.

Aplica-se a