FlatBuffers.ByteBuffer.GetSbyte C# (CSharp) Method

GetSbyte() public method

public GetSbyte ( int index ) : sbyte
index int
return sbyte
        public sbyte GetSbyte(int index)
        {
            AssertOffsetAndLength(index, sizeof(sbyte));
            return (sbyte)_buffer[index];
        }

Usage Example

Example #1
0
 public bool MoveNext()
 {
     if (_pos >= _end)
     {
         return(false);
     }
     Current = _buffer.GetSbyte(_pos);
     _pos   += Size;
     return(true);
 }
All Usage Examples Of FlatBuffers.ByteBuffer::GetSbyte