4 writes to offset
System (4)
net\System\Net\mail\BufferBuilder.cs (4)
39this.buffer[this.offset++] = value; 51this.offset += count; 92this.offset += count; 110this.offset = 0;
5 references to offset
System (5)
net\System\Net\mail\BufferBuilder.cs (5)
28if (count > this.buffer.Length - this.offset) 31Buffer.BlockCopy(this.buffer, 0, newBuffer, 0, this.offset); 50Buffer.BlockCopy(value, offset, this.buffer, this.offset, count); 90this.buffer[this.offset + i] = (byte)c; 99return this.offset;