TypeConverterCanConvertToT Method  | 
 
            Determines whether the given value can be converted to the specified type.
            
 
    Namespace: 
   TB.ComponentModel
    Assembly:
   UniversalTypeConverter (in UniversalTypeConverter.dll) Version: 2.0.0
Syntaxpublic bool CanConvertTo<T>(
	Object value,
	CultureInfo culture = null
)
Parameters
- value
 - Type: SystemObject
The value to test. - culture (Optional)
 - Type: System.GlobalizationCultureInfo
The culture to use. If not given or null, the DefaultCulture is used. 
Type Parameters
- T
 - The type to test.
 
Return Value
Type: 
Booleantrue if 
value can be converted to 
T; otherwise, false.
See Also