ListBox.SelectedObjectCollection.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:
virtual void CopyTo(Array ^ destination, int index);
public void CopyTo (Array dest, int index);
public void CopyTo (Array destination, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)
Public Sub CopyTo (destination As Array, index As Integer)
Parameters
- destdestination
- Array
An array to copy the contents of the collection to.
- index
- Int32
The location within the destination array to copy the items from the collection to.
Implements
Remarks
You can use this method to combine the selected items from multiple collections into a single array.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.