ConvertTo()

TypeConverter::ConvertTo(const System::SharedPtr<System::Object>&, const System::TypeInfo&) method

Converts object to specific type.

System::SharedPtr<System::Object> System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr<System::Object> &value, const System::TypeInfo &destinationType)

Arguments

ParameterTypeDescription
valueconst System::SharedPtr<System::Object>&Object to convert.
destinationTypeconst System::TypeInfo&Type to convert to.

Return Value

Converted object.

TypeConverter::ConvertTo(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&, const System::TypeInfo&) method

Converts object to specific type.

virtual System::SharedPtr<System::Object> System::ComponentModel::TypeConverter::ConvertTo(const System::SharedPtr<ITypeDescriptorContext> &context, const System::SharedPtr<System::Globalization::CultureInfo> &culture, const System::SharedPtr<System::Object> &value, const System::TypeInfo &destinationType)

Arguments

ParameterTypeDescription
contextconst System::SharedPtr<ITypeDescriptorContext>&Object conversion context information.
cultureconst System::SharedPtr<System::Globalization::CultureInfo>&Culture to use when converting objects.
valueconst System::SharedPtr<System::Object>&Object to convert.
destinationTypeconst System::TypeInfo&Type to convert to.

Return Value

Converted object.

See Also