Show / Hide Table of Contents

Class OrderedSet<T>

Inheritance
object
DecoratedSet<T>
OrderedSet<T>
ObservableOrderedSet<T>
OppositeOrderedSet<TParent, TCollected>
Implements
IList
ICollection
IOrderedSet<T>
IList<T>
ISet<T>
ICollection<T>
IEnumerable<T>
IEnumerable
Inherited Members
DecoratedSet<T>.Items
DecoratedSet<T>.ExceptWith(IEnumerable<T>)
DecoratedSet<T>.IntersectWith(IEnumerable<T>)
DecoratedSet<T>.IsProperSubsetOf(IEnumerable<T>)
DecoratedSet<T>.IsProperSupersetOf(IEnumerable<T>)
DecoratedSet<T>.IsSubsetOf(IEnumerable<T>)
DecoratedSet<T>.IsSupersetOf(IEnumerable<T>)
DecoratedSet<T>.Overlaps(IEnumerable<T>)
DecoratedSet<T>.SetEquals(IEnumerable<T>)
DecoratedSet<T>.SymmetricExceptWith(IEnumerable<T>)
DecoratedSet<T>.UnionWith(IEnumerable<T>)
DecoratedSet<T>.Contains(T)
DecoratedSet<T>.CopyTo(T[], int)
DecoratedSet<T>.Count
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: NMF.Collections.Generic
Assembly: NMF.Collections.dll
Syntax
public class OrderedSet<T> : DecoratedSet<T>, IList, ICollection, IOrderedSet<T>, IList<T>, ISet<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name Description
T

Properties

| Edit this page View Source

this[int]

Declaration
public T this[int index] { get; set; }
Parameters
Type Name Description
int index
Property Value
Type Description
T

Methods

| Edit this page View Source

Add(T)

Declaration
public override bool Add(T item)
Parameters
Type Name Description
T item
Returns
Type Description
bool
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Add(T)
| Edit this page View Source

AsReadOnly()

Declaration
public ReadOnlyOrderedSet<T> AsReadOnly()
Returns
Type Description
ReadOnlyOrderedSet<T>
| Edit this page View Source

Clear()

Declaration
public override void Clear()
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Clear()
| Edit this page View Source

GetEnumerator()

Declaration
public override IEnumerator<T> GetEnumerator()
Returns
Type Description
IEnumerator<T>
Overrides
NMF.Collections.Generic.DecoratedSet<T>.GetEnumerator()
| Edit this page View Source

IndexOf(T)

Declaration
public int IndexOf(T item)
Parameters
Type Name Description
T item
Returns
Type Description
int
| Edit this page View Source

Insert(int, T)

Declaration
public virtual void Insert(int index, T item)
Parameters
Type Name Description
int index
T item
| Edit this page View Source

Remove(T)

Declaration
public override sealed bool Remove(T item)
Parameters
Type Name Description
T item
Returns
Type Description
bool
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Remove(T)
| Edit this page View Source

Remove(T, int)

Declaration
protected virtual bool Remove(T item, int index)
Parameters
Type Name Description
T item
int index
Returns
Type Description
bool
| Edit this page View Source

RemoveAt(int)

Declaration
public void RemoveAt(int index)
Parameters
Type Name Description
int index
| Edit this page View Source

Replace(int, T, T)

Declaration
protected virtual void Replace(int index, T oldValue, T newValue)
Parameters
Type Name Description
int index
T oldValue
T newValue

Implements

IList
ICollection
IOrderedSet<T>
IList<T>
ISet<T>
ICollection<T>
IEnumerable<T>
IEnumerable
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX