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.6.0.0 (5.6.19.0117)
Syntax public 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