BplusDotNet.xBplusTreeBytes.ReOpen C# (CSharp) Method

ReOpen() public static method

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

Same methods

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