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);
49
_elements
.Clear();
53
public bool Contains(T item) =>
_elements
.Contains(item);
57
public void CopyTo(T[] array, int arrayIndex) =>
_elements
.CopyTo(array, arrayIndex);
58
public IEnumerator<T> GetEnumerator() =>
_elements
.GetEnumerator();
59
public int IndexOf(T item) =>
_elements
.IndexOf(item);
62
_elements
.Insert(index, item);
68
bool result =
_elements
.Remove(item);
78
T element =
_elements
[index];
79
_elements
.RemoveAt(index);
83
IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)
_elements
).GetEnumerator();