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.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
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