InstanceDataCollectionCollection.CopyTo Method (InstanceDataCollection[], Int32)
Copies an array of InstanceDataCollection instances to the collection, at the specified index.
Assembly: System (in System.dll)
Parameters
- counters
- Type: System.Diagnostics.InstanceDataCollection[]
An array of InstanceDataCollection instances (identified by the counters they contain) to add to the collection.
- index
- Type: System.Int32
The location at which to add the new instances.
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.
// 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); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.