WriteBytes() public method

public WriteBytes ( byte srcBytes, long offset, int count ) : void
srcBytes byte
offset long
count int
return void
Exemplo n.º 1
0
		public override void Write(byte[] buffer, int offset, int count) {
			mem.WriteBytes(buffer, offset, count);
		}
Exemplo n.º 2
0
 public override void Write(byte[] buffer, int offset, int count)
 {
     MemoryArea.WriteBytes(buffer, offset, count, mem.Bytes);
 }