LinqUtilsIsNullableOfT Method  | 
 
            Determines whether the passed in type is a nullable(Of T) type. If so, true is returned, otherwise false
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic static bool IsNullableOfT(
	Type typeToCheck
)
Public Shared Function IsNullableOfT ( 
	typeToCheck As Type
) As Boolean
Parameters
- typeToCheck
 - Type: SystemType
The type to check. 
Return Value
Type: 
Booleantrue if passed in type is Nullable(Of T), otherwise false.
            
See Also