Class AssociationList<T>
Denotes a collection to store associated elements
Inheritance
AssociationList<T>
Assembly: NMF.Models.dll
Syntax
public class AssociationList<T> : Collection<T>, IList<T>, ICollection<T>, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable where T : class, IModelElement
Type Parameters
Name |
Description |
T |
The type of the elements
|
Methods
|
Edit this page
View Source
ClearItems()
Declaration
protected override void ClearItems()
Overrides
|
Edit this page
View Source
InsertItem(int, T)
Declaration
protected override void InsertItem(int index, T item)
Parameters
Type |
Name |
Description |
int |
index |
|
T |
item |
|
Overrides
|
Edit this page
View Source
RemoveItem(int)
Declaration
protected override void RemoveItem(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
Overrides
|
Edit this page
View Source
SetItem(int, T)
Declaration
protected override void SetItem(int index, T item)
Parameters
Type |
Name |
Description |
int |
index |
|
T |
item |
|
Overrides
Implements