Click or drag to resize

ObjectExtensionIsConvertibleTo Method (Object, Type, CultureInfo)

Determines whether the given value can be converted to the specified type using the default converter.

Namespace:  TB.ComponentModel
Assembly:  UniversalTypeConverter (in UniversalTypeConverter.dll) Version: 2.0.0
Syntax
C#
public static bool IsConvertibleTo(
	this Object value,
	Type destinationType,
	CultureInfo culture = null
)

Parameters

value
Type: SystemObject
The value to test.
destinationType
Type: SystemType
The type to test.
culture (Optional)
Type: System.GlobalizationCultureInfo
The culture to use. If not given or null, the DefaultCulture is used.

Return Value

Type: Boolean
true if value can be converted to destinationType; otherwise, false.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also