net.sf.jni4net.nio.BufferN.nextGetIndex C# (CSharp) Method

nextGetIndex() private method

private nextGetIndex ( int nb ) : int
nb int
return int
        internal int nextGetIndex(int nb)
        {
            // package-private
            if (_limit - _position < nb)
                throw new BufferUnderflowException();
            int p = _position;
            _position += nb;
            return p;
        }

Same methods

BufferN::nextGetIndex ( ) : int