Type.IsSubclassOf Method (Type)
Assembly: mscorlib (in mscorlib.dll)
[<ComVisibleAttribute(true)>] abstract IsSubclassOf : c:Type -> bool [<ComVisibleAttribute(true)>] override IsSubclassOf : c:Type -> bool
Parameters
- c
-
Type:
System.Type
The type to compare with the current type.
Return Value
Type: System.Booleantrue if the current Type derives from c; otherwise, false. This method also returns false if c and the current Type are equal.
Implements
_Type.IsSubclassOf(Type)| Exception | Condition |
|---|---|
| ArgumentNullException | c is null. |
You can call the IsSubclassOf method to determine any of the following:
Whether one class derives from another.
Whether a type derives from ValueType. However, the IsValueType is a more efficient way to determine whether a type is a value type.
Whether a type derives from Enum. However, the IsEnum method is a more efficient way to determine whether a type is an enumeration.
Whether a type is a delegate, that is, whether it derives from either Delegate or MulticastDelegate.
The IsSubclassOf method cannot be used to determine whether an interface derives from another interface, or whether a class implements an interface. Use theIsAssignableFrom method for that purpose, as the following example shows.
If the current Type represents a type parameter in the definition of a generic type or generic method, it derives from its class constraint or from System.Object if it has no class constraint.
Note |
|---|
Except when used with interfaces, IsSubclassOf is the converse of IsAssignableFrom. That is, if t1.IsSubclassOf(t2) is true, then t2.IsAssignableFrom(t1) is also true. |
This method can be overridden by a derived class.
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
