| IInheritanceInfoProviderCheckIfIsSubTypeOf Method  | 
 
            Determines if typeToCheck is a subtype of superType.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxbool CheckIfIsSubTypeOf(
	string typeToCheck,
	string superType
)
Function CheckIfIsSubTypeOf ( 
	typeToCheck As String,
	superType As String
) As Boolean
Parameters
- typeToCheck
 - Type: SystemString
Type to check. - superType
 - Type: SystemString
The supertype. 
Return Value
Type: 
Booleantrue if typeToCheck is a subtype of supertype, false otherwise. Also returns false is supertype isn't in a hierarchy.
See Also