BinarySizeConverterConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) Method

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

Definition

Namespace: Ookii
Assembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
C#
public override Object? ConvertTo(
	ITypeDescriptorContext? context,
	CultureInfo? culture,
	Object? value,
	Type destinationType
)

Parameters

context  ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture  CultureInfo
A CultureInfo. If is passed, the current culture is assumed.
value  Object
The Object to convert.
destinationType  Type
The Type to convert the value parameter to.

Return Value

Object
An Object that represents the converted value.

Exceptions

ArgumentNullExceptionThe destinationType parameter is .
NotSupportedExceptionThe conversion cannot be performed.

See Also