Click or drag to resize
BigListTConvertAllTDest Method (ConverterT, TDest)
Convert the list to a new list by applying a delegate to each item in the collection. The resulting list contains the result of applying converter to each item in the list, in order. The current list is unchanged.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public BigList<TDest> ConvertAll<TDest>(
	Converter<T, TDest> converter
)

Parameters

converter
Type: SystemConverterT, TDest
A delegate to the method to call, passing each item in .

Type Parameters

TDest
The type each item is being converted to.

Return Value

Type: BigListTDest
The resulting BigList from applying converter to each item in this list.
Exceptions
ExceptionCondition
ArgumentNullExceptionconverter is null.
See Also