Type.IsAssignableTo(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.
Determines whether the current type can be assigned to a variable of the specified targetType.
public:
 bool IsAssignableTo(Type ^ targetType);public bool IsAssignableTo(Type? targetType);member this.IsAssignableTo : Type -> boolPublic Function IsAssignableTo (targetType As Type) As BooleanParameters
- targetType
- Type
The type to compare with the current type.
Returns
true if any of the following conditions is true:
- The current instance and - targetTyperepresent the same type.
- The current type is derived either directly or indirectly from - targetType. The current type is derived directly from- targetTypeif it inherits from- targetType; the current type is derived indirectly from- targetTypeif it inherits from a succession of one or more classes that inherit from- targetType.
- targetTypeis an interface that the current type implements.
- The current type is a generic type parameter, and - targetTyperepresents one of the constraints of the current type.
- The current type represents a value type, and - targetTyperepresents- Nullable<c>(- Nullable(Of c)in Visual Basic).
false if none of these conditions are true, or if targetType is null.