System.Windows.Forms.ListViewGroupCollection.CopyTo Method

Copies the groups in the collection to a compatible one-dimensional Array, starting at the specified index of the target array.

Syntax

public void CopyTo (Array array, int index)

Parameters

array
The Array to which the groups are copied.
index
The first index within the array to which the groups are copied.

Remarks

Use the ListViewGroupCollection.CopyTo(Array, int) 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 erload:System.Array.Sort method. To do this, copy the groups into a compatible array, then sort the array. Next, use the ListViewGroupCollection.Clear method to remove all the groups from the collection, then use the ListViewGroupCollection.AddRange(ListViewGroup[]) method to add the sorted array back to the collection.

Requirements

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0