SystemTypeConverterBaseTPerformConvertTo Method  | 
 
            Performs the ConvertTo.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxprotected virtual Object PerformConvertTo(
	T value,
	Type destinationType
)
Protected Overridable Function PerformConvertTo ( 
	value As T,
	destinationType As Type
) As Object
Parameters
- value
 - Type: T
The value. - destinationType
 - Type: SystemType
Type of the destination. 
Return Value
Type: 
Objectvalue converted to destinationType
RemarksBy default it uses Convert.ChangeType. Value is guaranteed to be non-null and of type T
See Also