FieldUtilitiesDetermineRealFullTypeName Method (Type, Boolean) | 
 
            Determines the name of the real full type of the type passed in, which can be a generic type. If so, the generic type parameter will be used.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic static string DetermineRealFullTypeName(
	Type toConvert,
	bool unWrapNullableType
)
Public Shared Function DetermineRealFullTypeName ( 
	toConvert As Type,
	unWrapNullableType As Boolean
) As String
Parameters
- toConvert
 - Type: SystemType
To convert. - unWrapNullableType
 - Type: SystemBoolean
if set to true, it will unwrap the nullable type toConvert, if toConvert is a nullable type (so it will return T) 
Return Value
Type: 
String
            full name of type specified. if toConvert is a Nullable(Of T), the type of T will be returned, if unwrapNullableType is true
            
See Also