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

ReadOnly() 공개 정적인 메소드

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