Skybound AutoComplete

AutoComplete.ObjectCollection.CopyTo Method 

Copies the elements of the current collection to a Array, starting at the specified array index.

[Visual Basic]
NotOverridable Public Sub CopyTo( _
   ByVal array As Array, _
   ByVal index As Integer _
) _
    Implements ICollection.CopyTo
[C#]
public void CopyTo(
   Array array,
   int index
);

Parameters

array
The Array to copy to.
index
The 0-based index in array at which copying begins.

Implements

ICollection.CopyTo

Remarks

You can use this method to combine the items from multiple collections into a single array.

See Also

AutoComplete.ObjectCollection Class | Skybound.AutoComplete Namespace