BplusDotNet.hBplusTree.ReOpen C# (CSharp) Method

ReOpen() public static method

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

Same methods

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