System.Converter<T,U> Delegate

public delegate U Converter<T,U>(T from);

Base Types

Object
  Delegate
    Converter<T,U>

This type implements ICloneable.

Assembly

mscorlib

Library

BCL

Summary

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

Parameters

from
The object to convert.

Return Value

The object converted to the target type.

Description

[Note: This delegate is used by the method System.Array.ConvertAll(T[], Converter<T,U>) , and in System.Collections.Generic.List<T> to convert each elements of the collection from one type to another.

]

See Also

System Namespace