コード例 #1
0
 public bool Equals(SimpleTree <V> other)
 {
     return(this.GetHashCode() == other.GetHashCode());
 }
コード例 #2
0
 public new void Add(SimpleTree <V> item)
 {
     base.Add(item);
     item.Parent = this;
 }