BplusDotNet.hBplusTree.ReadOnly C# (CSharp) Méthode

ReadOnly() public static méthode

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