Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EventLogEntryCollection::CopyTo Method (array<EventLogEntry^>^, Int32)

 

Copies the elements of the EventLogEntryCollection to an array of EventLogEntry instances, starting at a particular array index.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
void CopyTo(
	array<EventLogEntry^>^ entries,
	int index
)

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft