Click or drag to resize

ProcessQueueTConvertAllTOutput Method

Converts the elements in the current ProcessQueueT to another type, and returns a ProcessQueueT containing the converted elements.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public virtual List<TOutput> ConvertAll<TOutput>(
	Converter<T, TOutput> converter
)
View Source

Parameters

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

ListTOutput
A generic list of the target type containing the converted elements from the current ProcessQueueT.
Exceptions
ExceptionCondition
ArgumentNullExceptionconverter is null.
See Also