BplusDotNet.BplusTreeBytes.MaxKeyLength C# (CSharp) Method

MaxKeyLength() public method

public MaxKeyLength ( ) : int
return int
        public int MaxKeyLength()
        {
            return this.tree.MaxKeyLength();
        }

Usage Example

Example #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::MaxKeyLength