CaptureCollection::CopyTo Method
Updated: June 2011
Copies all the elements of the collection to the given array beginning at the given index.
Assembly: System (in System.dll)
Parameters
- array
- Type: System::Array
The array the collection is to be copied into.
- arrayIndex
- Type: System::Int32
The position in the destination array where copying is to begin.
Implements
ICollection::CopyTo(Array, Int32)| Exception | Condition |
|---|---|
| ArgumentNullException | array is nullptr. |
| ArgumentOutOfRangeException | arrayIndex is outside the bounds of array. -or- arrayIndex plus CaptureCollection::Count is outside the bounds of array. |
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.
Caution |
|---|
This member is not present in the Portable Class Library. If you are developing applications that target the Portable Class Library, use the CaptureCollection::ICollection::CopyTo method instead. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Caution