EventLogEntryCollection::CopyTo Method (array<EventLogEntry^>^, Int32)
Copies the elements of the EventLogEntryCollection to an array of EventLogEntry instances, starting at a particular array index.
Assembly: System (in System.dll)
Parameters
- entries
-
Type:
array<System.Diagnostics::EventLogEntry^>^
The one-dimensional array of EventLogEntry instances that is the destination of the elements copied from the collection. The array must have zero-based indexing.
- index
-
Type:
System::Int32
The zero-based index in the array at which copying begins.
Because new entries are appended to the existing list, stepping through the collection enables you to access the entries that were created after you originally created the EventLogEntryCollection. An array of EventLogEntry instances is fixed at the time it is instantiated. Therefore, you cannot read new entries by using the array that is returned by the CopyTo method.
The following example creates an EventLogEntry array and uses the CopyTo method to copy the contents of an EventLogEntryCollection into it.
Available since 1.1