Click or drag to resize

ProcessQueueTCopyTo Method

Copies the entire ProcessQueueT to a compatible one-dimensional array, starting at the beginning of the target array.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntax
public void CopyTo(
	T[] array,
	int arrayIndex
)
View Source

Parameters

array  T
The one-dimensional array that is the destination of the elements copied from ProcessQueueT. The array must have zero-based indexing.
arrayIndex  Int32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentExceptionarrayIndex is equal to or greater than the length of array -or- the number of elements in the source ProcessQueueT is greater than the available space from arrayIndex to the end of the destination array.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
ArgumentNullExceptionarray is null.
See Also