[This is preliminary documentation and is subject to change.]

Copies the collection to an array.

Namespace:  OfficeClip.BusinessLayer.Sync
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public void CopyTo(
	Array array,
	int startIndex
)
Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As Array, _
	startIndex As Integer _
)
Visual C++
public:
virtual void CopyTo(
	Array^ array, 
	int startIndex
) sealed

Parameters

array
Type: System..::.Array
The destination array.
startIndex
Type: System..::.Int32
The index of the collection from where the copy should begin.

Implements

ICollection..::.CopyTo(Array, Int32)

See Also