BplusDotNet.BplusTree.Initialize C# (CSharp) Method

Initialize() public static method

public static Initialize ( System treefile, System blockfile, int KeyLength ) : BplusTree
treefile System
blockfile System
KeyLength int
return BplusTree
        public static BplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, KeyLength);
            return new BplusTree(tree);
        }

Same methods

BplusTree::Initialize ( System treefile, System blockfile, int KeyLength, int CultureId ) : BplusTree
BplusTree::Initialize ( System treefile, System blockfile, int KeyLength, int CultureId, int nodesize, int buffersize ) : BplusTree
BplusTree::Initialize ( string treefileName, string blockfileName, int KeyLength ) : BplusTree
BplusTree::Initialize ( string treefileName, string blockfileName, int KeyLength, int CultureId ) : BplusTree
BplusTree::Initialize ( string treefileName, string blockfileName, int KeyLength, int CultureId, int nodesize, int buffersize ) : BplusTree