Converter<(Of <(<'TInput, TOutput>)>)> Delegate
Represents a method that converts an object from one type to another type.
Namespace:
SystemAssembly: Bridge (in Bridge.dll)
Syntax
[ExternalAttribute] [NameAttribute] public delegate TOutput Converter<TInput, TOutput>( TInput input )
<ExternalAttribute> _ <NameAttribute> _ Public Delegate Function Converter(Of TInput, TOutput) ( _ input As TInput _ ) As TOutput
[ExternalAttribute] [NameAttribute] generic<typename TInput, typename TOutput> public delegate TOutput Converter( TInput input )
Type Parameters
- TInput
- The type of object that is to be converted.This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
- TOutput
- The type the input object is to be converted to.This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Parameters
- input
- Type: TInput
The object to convert.