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

Interface for type-safe TypeConverters (write-only conversion)

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

Syntax

C#
protected interface ITypeConverterTo<TOther>
Visual Basic
Protected Interface ITypeConverterTo(Of TOther)
Visual C++
generic<typename TOther>
protected interface class ITypeConverterTo
F#
type ITypeConverterTo<'TOther> =  interface end
JScript
JScript does not support generic types or methods.

Type Parameters

TOther
Other type (e.g. String - most common). Value of T are mostly converted to this type in order to be show to user and are converted from this type in mostly in order to get user input

Remarks

By implementing this interface you tells to your base class (TypeConverter<(Of <(<'T>)>)>) that you are able to convert to type TOther

See Also