16 references to _elements
ILAssembler (16)
NamedElementList.cs (16)
22
get =>
_elements
[index];
25
T oldElement =
_elements
[index];
26
_elements
[index] = value;
37
public int Count =>
_elements
.Count;
39
public bool IsReadOnly => ((ICollection<T>)
_elements
).IsReadOnly;
43
_elements
.Add(item);
52
_elements
.Clear();
56
public bool Contains(T item) =>
_elements
.Contains(item);
60
public void CopyTo(T[] array, int arrayIndex) =>
_elements
.CopyTo(array, arrayIndex);
61
public IEnumerator<T> GetEnumerator() =>
_elements
.GetEnumerator();
62
public int IndexOf(T item) =>
_elements
.IndexOf(item);
65
_elements
.Insert(index, item);
72
bool result =
_elements
.Remove(item);
82
T element =
_elements
[index];
83
_elements
.RemoveAt(index);
87
IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)
_elements
).GetEnumerator();