LinqUtilsCheckIfImplicitCast Method |
Checks if the cast from fromType to toType is an implicit cast.
Namespace: SD.LLBLGen.Pro.LinqSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
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