|
ProcessQueueTConvertAllTOutput Method
|
Converts the elements in the current
ProcessQueueT to another type, and returns a
ProcessQueueT containing the
converted elements.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic 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
)
abstract ConvertAll :
converter : Converter<'T, 'TOutput> -> List<'TOutput>
override ConvertAll :
converter : Converter<'T, 'TOutput> -> List<'TOutput> JavaScript does not support generic types or methods.
View SourceParameters
- converter ConverterT, TOutput
- A Converter delegate that converts each element from one type to another type.
Type Parameters
- TOutput
- The generic type used.
Return Value
ListTOutputA generic list of the target type containing the converted elements from the current
ProcessQueueT.
Exceptions
See Also