BplusDotNet.hBplusTreeBytes.ReadOnly C# (CSharp) Method

ReadOnly() public static method

public static ReadOnly ( string treefileName, string blockfileName ) : hBplusTreeBytes
treefileName string
blockfileName string
return hBplusTreeBytes
        public static new hBplusTreeBytes ReadOnly(string treefileName, string blockfileName)
        {
            BplusTreeBytes tree = BplusTreeBytes.ReadOnly(treefileName, blockfileName);
            int prefixLength = tree.MaxKeyLength();
            return new hBplusTreeBytes(tree, prefixLength);
        }