diff --git a/xml/System/Type.xml b/xml/System/Type.xml index ddff120b04c..baa371a1741 100644 --- a/xml/System/Type.xml +++ b/xml/System/Type.xml @@ -10881,7 +10881,7 @@ GetType(Array).IsAssignableFrom(type) The type to compare with the current type. - Determines whether an instance of a specified type can be assigned to a variable of the current type. + Determines whether an instance of a specified type can be assigned to a variable of the current type. if any of the following conditions is true: @@ -10971,9 +10971,21 @@ GetType(Array).IsAssignableFrom(type) - To be added. - To be added. - To be added. + The type to compare with the current type. + Determines whether the current type can be assigned to a variable of the specified . + if any of the following conditions is true: + +- The current instance and represent the same type. + +- The current type is derived either directly or indirectly from . The current type is derived directly from if it inherits from ; the current type is derived indirectly from if it inherits from a succession of one or more classes that inherit from . + +- is an interface that the current type implements. + +- The current type is a generic type parameter, and represents one of the constraints of the current type. + +- The current type represents a value type, and represents Nullable<c> (Nullable(Of c) in Visual Basic). + + if none of these conditions are true, or if or is . To be added.