ConfigurationElementCollectionBase<T>.ICollection.CopyTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
array
is null
.
index
is less than 0.
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.