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.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
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)