Click or drag to resize

ProcessQueue<T> .AddRange Method

Adds the elements of the specified collection to the end of the ProcessQueue<T>.

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

Parameters

collection  IEnumerable<T>
The collection whose elements should be added to the end of the ProcessQueue<T>. 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