Example #1
0
 protected T ClearAncestor()
 {
     Ancestor = null;
     return((T)this);
 }
Example #2
0
 protected T AssignAncestor(T newData)
 {
     newData.Ancestor = Ancestor ?? this;
     Ancestor         = null;
     return(newData);
 }