BplusDotNet.BplusTreeBytes.ReadOnly C# (CSharp) Method

ReadOnly() public static method

public static ReadOnly ( string treefileName, string blockfileName ) : BplusTreeBytes
treefileName string
blockfileName string
return BplusTreeBytes
        public static BplusTreeBytes ReadOnly(string treefileName, string blockfileName)
        {
            return ReOpen(treefileName, blockfileName, System.IO.FileAccess.Read);
        }

Usage Example

Esempio n. 1
0
        public static xBplusTreeBytes ReadOnly(string treefileName, string blockfileName)
        {
            BplusTreeBytes tree         = BplusTreeBytes.ReadOnly(treefileName, blockfileName);
            int            prefixLength = tree.MaxKeyLength();

            return(new xBplusTreeBytes(tree, prefixLength));
        }
All Usage Examples Of BplusDotNet.BplusTreeBytes::ReadOnly