OrderedList Class

Definition

Show inherited members (74)

A List that provides methods for inserting/finding before/after. See remarks.

public class OrderedList<T> : List<T>, IList<T>, ICollection<T>, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable where T : notnull

Type parameters

T
Type of the list item

Remarks

We use a typed list and don't use extension methods because it would pollute all list implements and the top level namespace.

Tip: use kind:method, kind:property, kind:ctor. Press Esc to clear.

Constructors (2)

Methods (11)