System.Converter<TInput,TOutput> Delegate

Represents a method that converts an object from one type to another type.

Syntax

public delegate TOutput Converter<TInput, TOutput> (TInput input)

Type Parameters

TInput
Documentation for this section has not yet been entered.
TOutput
Documentation for this section has not yet been entered.

Parameters

input
Documentation for this section has not yet been entered.

Returns

The object converted to the target type.The object converted to the target type.Documentation for this section has not yet been entered.

Remarks

This delegate is used by the Array.ConvertAll``2(``0[], Converter<``0, ``1>) method of the Array class and the List`1.ConvertAll``1(Converter<`0, ``0>) method of the List`1 class to convert each element of the collection from one type to another.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0