| LinqUtilsCheckIfImplicitCast Method  | 
 
            Checks if the cast from fromType to toType is an implicit cast.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntaxpublic static bool CheckIfImplicitCast(
	Type fromType,
	Type toType
)
Public Shared Function CheckIfImplicitCast ( 
	fromType As Type,
	toType As Type
) As Boolean
Parameters
- fromType
 - Type: SystemType
From type. - toType
 - Type: SystemType
To type. 
Return Value
Type: 
Booleantrue if the cast is an implicit cast, false otherwise
See Also