BplusDotNet.hBplusTree.Initialize C# (CSharp) Method

Initialize() public static method

public static Initialize ( System treefile, System blockfile, int KeyLength ) : hBplusTree
treefile System
blockfile System
KeyLength int
return 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