BplusDotNet.BplusTree.ReOpen C# (CSharp) 메소드

ReOpen() 공개 정적인 메소드

public static ReOpen ( System treefile, System blockfile ) : BplusTree
treefile System
blockfile System
리턴 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