[]
Converts the elements in the current ReadOnlyStructList<T> to another type, and returns a list containing the converted elements.
public StructList<TOutput> ConvertAll<TOutput>(StructConverter<T, TOutput> converter) where TOutput : struct
Public Function ConvertAll(Of TOutput As Structure)(converter As StructConverter(Of T, TOutput)) As StructList(Of TOutput)
Type | Name | Description |
---|---|---|
StructConverter<T, TOutput> | converter | A StructConverter<TInput, TOutput> delegate that converts each element from one type to another type. |
Type | Description |
---|---|
StructList<TOutput> | A StructList<T> of the target type containing the converted elements from the current ReadOnlyStructList<T>. |
Name | Description |
---|---|
TOutput | The type of the elements of the target array. |