Esempio n. 1
0
 private Db4objects.Db4o.Internal.Btree.BTreeNode ProduceChild(int index, int childID
                                                               )
 {
     Db4objects.Db4o.Internal.Btree.BTreeNode child = _btree.ProduceNode(childID);
     if (_children != null)
     {
         _children[index] = child;
     }
     return(child);
 }
Esempio n. 2
0
        private BTreeNode ProduceChild(int index, int childID
                                       )
        {
            var child = _btree.ProduceNode(childID);

            if (_children != null)
            {
                _children[index] = child;
            }
            return(child);
        }