BplusDotNet.hBplusTree.ReadOnly C# (CSharp) Method

ReadOnly() public static method

public static ReadOnly ( string treefileName, string blockfileName ) : hBplusTree
treefileName string
blockfileName string
return hBplusTree
        public static new hBplusTree ReadOnly(string treefileName, string blockfileName)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.ReadOnly(treefileName, blockfileName);
            return new hBplusTree(tree);
        }