Click or drag to resize
Wizard .NET Library

EventedList<T>.ConvertAll<TOutput> Method

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public EventedList<TOutput> ConvertAll<TOutput>(
	Converter<T, TOutput> converter
)
Request Example View Source

Parameters

converter
Type: System.Converter<T, TOutput>
A Converter<TInput, TOutput> delegate that converts each element from one type to another type.

Type Parameters

TOutput
The type of the elements of the target array.

Return Value

Type: EventedList<TOutput>
A EventedList<T> of the target type containing the converted elements from the current EventedList<T>.
Exceptions
ExceptionCondition
ArgumentNullExceptionconverter is null.
See Also