public void Remove(IoNode child)
 {
     this.children.Remove(child);
 }
 public void Add(IoNode child)
 {
     this.children.Add(child);
 }