BplusDotNet.hBplusTree.ReadOnly C# (CSharp) 메소드

ReadOnly() 공개 정적인 메소드

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