WriteBytes() public method

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