BplusDotNet.hBplusTree.Initialize C# (CSharp) 메소드

Initialize() 공개 정적인 메소드

public static Initialize ( System treefile, System blockfile, int KeyLength ) : hBplusTree
treefile System
blockfile System
KeyLength int
리턴 hBplusTree
        public static new hBplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefile, blockfile, KeyLength);
            return new hBplusTree(tree);
        }

Same methods

hBplusTree::Initialize ( System treefile, System blockfile, int PrefixLength, int CultureId ) : hBplusTree
hBplusTree::Initialize ( System treefile, System blockfile, int PrefixLength, int CultureId, int nodesize, int buffersize ) : hBplusTree
hBplusTree::Initialize ( string treefileName, string blockfileName, int PrefixLength ) : hBplusTree
hBplusTree::Initialize ( string treefileName, string blockfileName, int PrefixLength, int CultureId ) : hBplusTree
hBplusTree::Initialize ( string treefileName, string blockfileName, int PrefixLength, int CultureId, int nodesize, int buffersize ) : hBplusTree