ProcessQueueTCopyTo Method
Copies the entire 
ProcessQueueT to a compatible one-dimensional array, starting at the beginning of the
            target array.
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.150 -- Release Build+058518a49b1370d27547de9971386266c9284ccd
public void CopyTo(
	T[] array,
	int arrayIndex
)
Public Sub CopyTo ( 
	array As T(),
	arrayIndex As Integer
)
public:
virtual void CopyTo(
	array<T>^ array, 
	int arrayIndex
) sealed
function CopyTo(array, arrayIndex);
- 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.
ICollectionTCopyTo(T, Int32) | ArgumentException | arrayIndex 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. | 
| ArgumentOutOfRangeException | arrayIndex is less than 0. | 
| ArgumentNullException | array is null. |