[This is preliminary documentation and is subject to change.]

Semi type-safe delegate of the ConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) function

Namespace: Tools.ComponentModelT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected delegate Object dConvertTo(
	ITypeDescriptorContext context,
	CultureInfo culture,
	T value
)
Visual Basic
Protected Delegate Function dConvertTo ( _
	context As ITypeDescriptorContext, _
	culture As CultureInfo, _
	value As T _
) As Object
Visual C++
protected delegate Object^ dConvertTo(
	ITypeDescriptorContext^ context, 
	CultureInfo^ culture, 
	T value
)
F#
type dConvertTo = 
    delegate of 
        context:ITypeDescriptorContext * 
        culture:CultureInfo * 
        value:'T -> Object
JScript
JScript does not support delegates.

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization..::..CultureInfo
A CultureInfo. If null is passed, the current culture is assumed.
value
Type: T
Value to be converted

Return Value

An Object that represents the converted value.

See Also