Struct TrackingList<T>.RemovedCollection
Provides removed items.
public readonly struct TrackingList<T>.RemovedCollection : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
- Implements
-
IEnumerable<T>
- Inherited Members
- Extension Methods
Properties
Count
Gets the number of elements in the collection.
public int Count { get; }
Property Value
- int
The number of elements in the collection.
this[int]
Gets the element at the specified index in the read-only list.
public T this[int index] { get; }
Parameters
indexintThe zero-based index of the element to get.
Property Value
- T
The element at the specified index in the read-only list.
Methods
GetEnumerator()
Gets a removed item enumerator.
public TrackingList<T>.RemovedEnumerator GetEnumerator()