PriorityQueueTCopyTo Method
Copies the
PriorityQueueT elements to an existing
one-dimensional
Array, starting at the specified array index.
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.141 -- Release Build+5e2ec463438f5de09767d41cb13e56e90c503d09
public void CopyTo(
T[] array,
int index
)
Public Sub CopyTo (
array As T(),
index As Integer
)
public:
virtual void CopyTo(
array<T>^ array,
int index
) sealed
function CopyTo(array, index);
- array T
-
The one-dimensional Array that is the destination of the elements copied
from the PriorityQueueT. The Array must
have zero-based indexing.
- index Int32
- The zero-based index in array at which copying begins.
IProducerConsumerCollectionTCopyTo(T, Int32) ArgumentNullException | array is a null reference (Nothing in Visual Basic). |
ArgumentOutOfRangeException | index is less than zero. |
ArgumentException |
index is equal to or greater than the length of the array -or- The number of
elements in the source PriorityQueueT is greater
than the available space from index to the end of the destination array.
|