ProcessQueueTConvertAllTOutput Method
Converts the elements in the current
ProcessQueueT to another type, and returns a
ProcessQueueT containing the
converted elements.
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.158 -- Release Build+5f840a50b8123565ea38e0c1d6c00b5650022b4a
public virtual List<TOutput> ConvertAll<TOutput>(
Converter<T, TOutput> converter
)
Public Overridable Function ConvertAll(Of TOutput) (
converter As Converter(Of T, TOutput)
) As List(Of TOutput)
public:
generic<typename TOutput>
virtual List<TOutput>^ ConvertAll(
Converter<T, TOutput>^ converter
)
JavaScript does not support generic types or methods.
- converter ConverterT, TOutput
- A Converter delegate that converts each element from one type to another type.
- TOutput
- The generic type used.
ListTOutputA generic list of the target type containing the converted elements from the current
ProcessQueueT.
| ArgumentNullException | converter is null. |