Implementation of the ICollection.CopyTo function.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

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

Parameters

array
Type: System..::.Array
Target array
index
Type: System..::.Int32
Start-Index in target array

See Also