InstanceDataCollectionCollection.CopyTo Method

Definition

Copies an array of InstanceDataCollection instances to the collection, at the specified index.

C#
public void CopyTo (System.Diagnostics.InstanceDataCollection[] counters, int index);

Parameters

counters
InstanceDataCollection[]

An array of InstanceDataCollection instances (identified by the counters they contain) to add to the collection.

index
Int32

The location at which to add the new instances.

Examples

The following code example uses the CopyTo method to convert an InstanceDataCollectionCollection into an array of InstanceDataCollection objects. Each element of the InstanceDataCollection array is passed to a function for further processing.

C#

// Process the InstanceDataCollectionCollection for this category.
PerformanceCounterCategory pcc = new PerformanceCounterCategory(categoryName);
InstanceDataCollectionCollection idColCol = pcc.ReadCategory();
InstanceDataCollection[] idColArray = new InstanceDataCollection[idColCol.Count];

Console.WriteLine("InstanceDataCollectionCollection for \"{0}\" " +
    "has {1} elements.", categoryName, idColCol.Count);

// Copy and process the InstanceDataCollection array.
idColCol.CopyTo(idColArray, 0);

foreach ( InstanceDataCollection idCol in idColArray )
{
    ProcessInstanceDataCollection(idCol);
}

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9