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

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

Syntax

C#
public delegate TOther dConvertTo(
	ITypeDescriptorContext context,
	CultureInfo culture,
	T value
)
Visual Basic
Public Delegate Function dConvertTo ( _
	context As ITypeDescriptorContext, _
	culture As CultureInfo, _
	value As T _
) As TOther
Visual C++
public delegate TOther dConvertTo(
	ITypeDescriptorContext^ context, 
	CultureInfo^ culture, 
	T value
)
F#
type dConvertTo = 
    delegate of 
        context:ITypeDescriptorContext * 
        culture:CultureInfo * 
        value:'T -> 'TOther
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

Representation of value in type TOther

See Also