ConfigurationElementCollectionBase<T>.ICollection.CopyTo Method

Definition

Copies the elements of the collection to an array, starting at a particular array index.

 virtual void System.Collections.ICollection.CopyTo(Array ^ array, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array array, int index);

Parameters

array
Array

The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.

index
Int32

The zero-based index in array at which copying starts.

Implements

Exceptions

ArgumentNullException

array is null.

ArgumentOutOfRangeException

index is less than 0.

ArgumentException

array is multidimensional.

-or-

array does not have zero-based indexing.

-or-

index is equal to or greater than the length of array.

-or-

The number of elements in the source ICollection object is greater than the available space from index to the end of the destination array.

Remarks

The specified array must be of a type that inherits from the ConfigurationElement class.

This method uses the System.Collections.Generic.List<T>.CopyTo method to copy the elements.

Applies to