Table of Contents

Struct TrackingList<T>.RemovedCollection

Namespace
Rinku.Tracking
Assembly
Rinku.dll

Provides removed items.

public readonly struct TrackingList<T>.RemovedCollection : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Implements
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

index int

The 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()

Returns

TrackingList<T>.RemovedEnumerator