Example #1
0
            /// <summary>
            /// Deletes the current key/value pair and returns true if there is
            /// another key after it
            /// </summary>
            public bool DeleteCurrentAndMoveNext()
            {
                var currentKey = CurrentKey;

                _parent.RemoveLargeEntry(currentKey);
                if (_parent._flags == FixedSizeTreeHeader.OptionFlags.Large)
                {
                    return(Seek(currentKey));
                }
                return(true);
            }