ListViewGroupCollection::CopyTo Method (Array^, Int32)
.NET Framework (current version)
Copies the groups in the collection to a compatible one-dimensional Array, starting at the specified index of the target array.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- array
-
Type:
System::Array^
The Array to which the groups are copied.
- index
-
Type:
System::Int32
The first index within the array to which the groups are copied.
Implements
ICollection::CopyTo(Array^, Int32)Use the CopyTo method to copy the groups in a collection (including the item references they contain) to a compatible array, starting at a specified index. This is useful, for example, when you want to sort the groups in the collection using the Array::Sort method. To do this, copy the groups into a compatible array, then sort the array. Next, use the Clear method to remove all the groups from the collection, then use the AddRange method to add the sorted array back to the collection.
.NET Framework
Available since 2.0
Available since 2.0
Show: