Class CollectionTrackerExtensions
Extension methods related to CollectionTracker<T>.
public static class CollectionTrackerExtensions
- Inheritance
-
CollectionTrackerExtensions
- Inherited Members
Methods
AsTracker(IEnumerable?)
Wraps the given enumerable in an instance of CollectionTracker<T>.
public static CollectionTracker? AsTracker(this IEnumerable? enumerable)
Parameters
enumerableIEnumerableThe enumerable to be wrapped
Returns
AsTracker<T>(IEnumerable<T>?)
Wraps the given enumerable in an instance of CollectionTracker<T>.
public static CollectionTracker<T>? AsTracker<T>(this IEnumerable<T>? enumerable)
Parameters
enumerableIEnumerable<T>The enumerable to be wrapped
Returns
Type Parameters
TThe item type of the collection
GetEnumerator(CollectionTracker)
Enumerates the elements inside the collection tracker.
public static IEnumerator GetEnumerator(this CollectionTracker tracker)
Parameters
trackerCollectionTracker