Converts an array of one type to an array of another type.
- TInput
- Documentation for this section has not yet been entered.
- TOutput
- Documentation for this section has not yet been entered.
- array
- The one-dimensional array to convert.
- converter
- A Converter<T, U> that converts each element from one type to another type.
A new array of the target type containing the converted elements from array.
Type Reason ArgumentNullException array is null or converter is null.
The Converter<T, U> is a delegate that converts an array element to the target type. The elements of array are individually passed to this converter, and the converted elements are saved in the new array. The source array remains unchanged.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0