Click or drag to resize
Wizard .NET Library

EventedListTConvertAllTOutput 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: SystemConverterT, TOutput
A ConverterTInput, 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: EventedListTOutput
A EventedListT of the target type containing the converted elements from the current EventedListT.
Exceptions
ExceptionCondition
ArgumentNullExceptionconverter is null.
See Also