CheckedListBox.CheckedIndexCollection.CopyTo(Array, Int32) 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 entire collection into an existing array at a specified location within the array.
public:
virtual void CopyTo(Array ^ dest, int index);
public void CopyTo (Array dest, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)
Parameters
- dest
- Array
The destination array.
- index
- Int32
The zero-based relative index in dest
at which copying begins.
Implements
Exceptions
array
is null
.
array
is multidimensional.
index
is less than zero.
The number of elements in the source Array is greater than the available space from index to the end of the destination Array.
Remarks
You can use this method to combine the selected indexes from multiple collections into a single array.