Click or drag to resize

ProcessQueueTAddRange Method

Adds the elements of the specified collection to the end of the ProcessQueueT.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.241-beta+912389e96d98840d2a999d490420db618dcbe4c6
Syntax
public void AddRange(
	IEnumerable<T> collection
)
View Source

Parameters

collection  IEnumerableT
The collection whose elements should be added to the end of the ProcessQueueT. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is null.
See Also