Mosa.AppSystem.AppInputStream.Write C# (CSharp) Method

Write() public method

Writes the specified value.
public Write ( byte value ) : void
value byte The value.
return void
        public void Write(byte value)
        {
            if (length == buffer.Length)
                return; // byte will be dropped

            position++;

            if (position == buffer.Length)
                position = 0;

            buffer[position] = value;

            length++;
        }

Same methods

AppInputStream::Write ( byte buffer, int offset, int count ) : void