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

ReadOnly() public static méthode

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

Usage Example

        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