| ObjectHelperGetTypeConverter Method |
Gets the type converter for the given type.
Namespace: DigitalRuneAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static TypeConverter GetTypeConverter(
Type type
)
Public Shared Function GetTypeConverter (
type As Type
) As TypeConverter
public:
static TypeConverter^ GetTypeConverter(
Type^ type
)
static member GetTypeConverter :
type : Type -> TypeConverter
Parameters
- type
- Type: SystemType
The type.
Return Value
Type:
TypeConverter
A new type converter instance for the given type; or
if no type
converter was found.
Remarks
This method is similar to TypeDescriptor.GetConverter(Type) - but it is
also available in Silverlight and on the Xbox 360.
See Also