public delegate U Converter<T,U>(T from);
Object
Delegate
Converter<T,U>This type implements ICloneable.
mscorlib
BCL
Represents the method that converts an object from one type to another.
- from
- The object to convert.
The object converted to the target type.
[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.]
System Namespace