Example #1
0
 public Tree First()
 {
     if (_preceding == null)
     {
         return(this);
     }
     return(_preceding.First());
 }