CircularListTConvertAllTOutput Method

Converts the elements in the current list to another type, and returns a CircularListT containing the converted elements.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public CircularList<TOutput> ConvertAll<TOutput>(
	Converter<T, TOutput> converter
)

Parameters

converter  ConverterT, 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 list.

Return Value

CircularListTOutput
A CircularListT of the target type containing the converted elements from the current list.

See Also