Exemplo n.º 1
0
 public bool DescendentOf(CatFxnType ft)
 {
     if (this == ft)
     {
         return(true);
     }
     if (mpParent == null)
     {
         return(false);
     }
     return(mpParent.DescendentOf(ft));
 }