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

nextPutIndex() private method

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

Same methods

BufferN::nextPutIndex ( int nb ) : int