System.Net.Mail.BufferBuilder.Append C# (CSharp) Method

Append() private method

private Append ( byte value, int offset, int count ) : void
value byte
offset int
count int
return void
        internal void Append(byte[] value, int offset, int count)
        {
            EnsureBuffer(count);
            Buffer.BlockCopy(value, offset, _buffer, _offset, count);
            _offset += count;
        }

Same methods

BufferBuilder::Append ( byte value ) : void
BufferBuilder::Append ( string value ) : void
BufferBuilder::Append ( string value, bool allowUnicode ) : void
BufferBuilder::Append ( string value, int offset, int count ) : void
BufferBuilder::Append ( string value, int offset, int count, bool allowUnicode ) : void