Exemplo n.º 1
0
 public bool Equals(SimpleTree <V> other)
 {
     return(this.GetHashCode() == other.GetHashCode());
 }
Exemplo n.º 2
0
 public new void Add(SimpleTree <V> item)
 {
     base.Add(item);
     item.Parent = this;
 }