Example #1
0
File: BT.cs Project: zh423328/BTree
 public virtual bool Processs(EntityParent theOwner)
 {
     if (mRoot != null)
     {
         return(mRoot.Processs(theOwner));
     }
     else
     {
         return(true);
     }
 }