BplusDotNet.hBplusTreeBytes.ReOpen C# (CSharp) Method

ReOpen() public static method

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

Same methods

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