CounterCreationDataCollection.CopyTo(CounterCreationData[], Int32) Method
Definition
Copies the elements of the CounterCreationData to an array, starting at the specified index of the array.
public:
void CopyTo(cli::array <System::Diagnostics::CounterCreationData ^> ^ array, int index);
public void CopyTo (System.Diagnostics.CounterCreationData[] array, int index);
member this.CopyTo : System.Diagnostics.CounterCreationData[] * int -> unit
Public Sub CopyTo (array As CounterCreationData(), index As Integer)
Parameters
- array
- CounterCreationData[]
An array of CounterCreationData instances to add to the collection.
- index
- Int32
The location at which to add the new instances.
Exceptions
array
is null
.
index
is less than 0.
The number of elements in the CounterCreationDataCollection is greater than the available space from index
to the end of the destination array.