Blast.Blast.WriteBuffer C# (CSharp) Method

WriteBuffer() private method

private WriteBuffer ( byte b ) : void
b byte
return void
        private void WriteBuffer(byte b)
        {
            EnsureBufferSpace(1);
            //log("lit: {0}", (char)b);
            this._outputBuffer[this._outputBufferPos++] = b;
        }