Class AssociationOrderedSet<T>
Denotes an ordered set implementation to store associated elements
Inheritance
AssociationOrderedSet<T>
Assembly: NMF.Models.dll
Syntax
public class AssociationOrderedSet<T> : OrderedSet<T>, IList, ICollection, IOrderedSet<T>, IList<T>, ISet<T>, ICollection<T>, IEnumerable<T>, IEnumerable where T : class, IModelElement
Type Parameters
Name |
Description |
T |
The type of elements
|
Methods
|
Edit this page
View Source
Add(T)
Declaration
public override bool Add(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Overrides
NMF.Collections.Generic.OrderedSet<T>.Add(T)
|
Edit this page
View Source
Clear()
Declaration
public override void Clear()
Overrides
NMF.Collections.Generic.OrderedSet<T>.Clear()
|
Edit this page
View Source
Remove(T, int)
Declaration
protected override bool Remove(T item, int index)
Parameters
Type |
Name |
Description |
T |
item |
|
int |
index |
|
Returns
Overrides
Implements