CircularListTConvertAllTOutput Method
Converts the elements in the current list to another type, and returns a
CircularListT containing the converted elements.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public CircularList<TOutput> ConvertAll<TOutput>(
Converter<T, TOutput> converter
)
Public Function ConvertAll(Of TOutput) (
converter As Converter(Of T, TOutput)
) As CircularList(Of TOutput)
public:
generic<typename TOutput>
CircularList<TOutput>^ ConvertAll(
Converter<T, TOutput>^ converter
)
member ConvertAll :
converter : Converter<'T, 'TOutput> -> CircularList<'TOutput>
- converter ConverterT, TOutput
- A ConverterTInput, TOutput delegate that converts each element from one type to another type.
- TOutput
- The type of the elements of the target list.
CircularListTOutputA
CircularListT of the target type containing the converted elements from the current list.