Sharpen.ByteBuffer.Array C# (CSharp) Method

Array() public method

public Array ( ) : byte[]
return byte[]
        public byte[] Array()
        {
            return buffer;
        }

Usage Example

		public int Read (ByteBuffer buffer)
		{
			int offset = buffer.Position () + buffer.ArrayOffset ();
			int num2 = s.Read (buffer.Array (), offset, (buffer.Limit () + buffer.ArrayOffset ()) - offset);
			buffer.Position (buffer.Position () + num2);
			return num2;
		}
All Usage Examples Of Sharpen.ByteBuffer::Array