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

nextGetIndex() private method

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

Same methods

BufferN::nextGetIndex ( int nb ) : int