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

Delegate to ConverterFrom(Type) function

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

Syntax

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

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization..::..CultureInfo
The CultureInfo to use as the current culture.
value
Type: TOther
Value to be converted to type T

Return Value

Value of type T initialized by value

See Also