Click or drag to resize
Accord.NET (logo)

RationalConverterConvertTo Method (ITypeDescriptorContext, CultureInfo, Object, Type)

Converts the given value object to the specified type, using the specified context and culture information.

Namespace:  Accord.Math.Converters
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public override Object ConvertTo(
	ITypeDescriptorContext context,
	CultureInfo culture,
	Object value,
	Type destinationType
)
Request Example View Source

Parameters

context
Type: System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.GlobalizationCultureInfo
A CultureInfo. If null is passed, the current culture is assumed.
value
Type: SystemObject
The Object to convert.
destinationType
Type: SystemType
The Type to convert the value parameter to.

Return Value

Type: Object
An Object that represents the converted value.
Exceptions
ExceptionCondition
InvalidCastExceptionCannot convert null to type " + destinationType.FullName
ArgumentException value must be a rational. - value or Inavlid destinationType: " + destinationType.FullName - destinationType
See Also