Пример #1
0
 public NodeEntity Root()
 {
     if (parent == null)
     {
         return(this);
     }
     return(parent.Root());
 }