System.Diagnostics.EventLogEntryCollection
Defines size and enumerators for a collection of EventLogEntry instances.
namespace System.Diagnostics
{
public class EventLogEntryCollection : ICollection, IEnumerable
{
public int Count { get; }
public virtual EventLogEntry this[int index] { get; }
public void CopyTo(EventLogEntry[] entries, int index);
public IEnumerator GetEnumerator();
}
}