1 write to _children
System.CommandLine (1)
ChildSymbolList{T}.cs (1)
20
_children
= new();
13 references to _children
System.CommandLine (13)
ChildSymbolList{T}.cs (13)
25
get =>
_children
[index];
28
_children
[index] = value;
33
public int Count =>
_children
.Count;
40
_children
.Add(item);
43
public void Clear() =>
_children
.Clear();
45
public bool Contains(T item) =>
_children
.Contains(item);
47
public void CopyTo(T[] array, int arrayIndex) =>
_children
.CopyTo(array, arrayIndex);
49
public IEnumerator<T> GetEnumerator() =>
_children
.GetEnumerator();
51
public int IndexOf(T item) =>
_children
.IndexOf(item);
56
_children
.Insert(index, item);
59
public bool Remove(T item) =>
_children
.Remove(item);
61
public void RemoveAt(int index) =>
_children
.RemoveAt(index);
63
IEnumerator IEnumerable.GetEnumerator() =>
_children
.GetEnumerator();