Ejemplo n.º 1
0
 public int IndexOfChild(QueryNode child)
 {
     return(children.IndexOf(child));
 }
Ejemplo n.º 2
0
 public void RemoveChild(QueryNode child)
 {
     child.Parent = null;
     children.Remove(child);
 }
Ejemplo n.º 3
0
 public void InsertChild(int index, QueryNode child)
 {
     child.Parent = this;
     children.Insert(index, child);
 }
Ejemplo n.º 4
0
 public void AddChild(QueryNode child)
 {
     child.Parent = this;
     children.Add(child);
 }