BplusDotNet.xBplusTreeBytes.ReadOnly C# (CSharp) Method

ReadOnly() public static method

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