Пример #1
0
 /// <summary>
 /// Dispose()
 /// </summary>
 public virtual void Dispose()
 {
     this.text     = null;
     this.parent   = null;
     this.children = null;
     this.commnet  = null;
     this.preTree  = null;
 }
Пример #2
0
 /// <summary>
 /// 子をセットする。
 /// </summary>
 /// <param name="list"></param>
 public void SetChildren(RawlerCollection list)
 {
     this.children = list;
     foreach (var item in children)
     {
         item.SetParent(this);
     }
 }