|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax 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
)
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