This documentation is archived and is not being maintained.
GroupCollection::ICollection::CopyTo Method
Visual Studio 2010
Updated: June 2011
Copies all the elements of the collection to the specified array beginning at the specified index.
Assembly: System (in System.dll)
Parameters
- array
- Type: System::Array
The one-dimensional array the collection is to be copied into.
- arrayIndex
- Type: System::Int32
The zero-based index in the destination array where copying is to begin.
Implements
ICollection::CopyTo(Array, Int32)| Exception | Condition |
|---|---|
| ArgumentNullException | array is nullptr. |
| IndexOutOfRangeException | arrayIndex is outside the bounds of array. -or- arrayIndex plus GroupCollection::Count is outside the bounds of array. |
This member is an explicit interface implementation. It can be used only when the GroupCollection instance is cast to an ICollection interface object.
Because the entire collection is copied into the array starting at the given index, the destination array must be at least as large as the collection.
Show: