BplusDotNet.BplusTree.ReOpen C# (CSharp) Method

ReOpen() public static method

public static ReOpen ( System treefile, System blockfile ) : BplusTree
treefile System
blockfile System
return BplusTree
        public static BplusTree ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            BplusTreeBytes tree = BplusTreeBytes.ReOpen(treefile, blockfile);
            return new BplusTree(tree);
        }

Same methods

BplusTree::ReOpen ( string treefileName, string blockfileName ) : BplusTree