ProcessQueueTConvertAllTOutput Method

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

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
public virtual List<TOutput> ConvertAll<TOutput>(
	Converter<T, TOutput> converter
)

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

ArgumentNullExceptionconverter is null.

See Also