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

Interface for type-safe TypeConverters (read-write conversion with validation)

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

Syntax

C#
protected interface ITypeConverterWithValidation<TOther> : TypeConverter<(Of <(<'T>)>)>..::..ITypeConverter<TOther>
Visual Basic
Protected Interface ITypeConverterWithValidation(Of TOther) _
	Inherits TypeConverter<(Of <(<'T>)>)>..::..ITypeConverter(Of TOther)
Visual C++
generic<typename TOther>
protected interface class ITypeConverterWithValidation : TypeConverter<(Of <(<'T>)>)>..::..ITypeConverter<TOther>
F#
type ITypeConverterWithValidation<'TOther> =  
    interface
        interface TypeConverter<(Of <(<'T>)>)>..::..ITypeConverter<'TOther>
    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 and from type TOther

See Also