WriteBytes() public method

public WriteBytes ( byte srcBytes, long offset, int count ) : void
srcBytes byte
offset long
count int
return void
示例#1
0
		public override void Write(byte[] buffer, int offset, int count) {
			mem.WriteBytes(buffer, offset, count);
		}
示例#2
0
文件: ImageStream.cs 项目: wxjwz/reko
 public override void Write(byte[] buffer, int offset, int count)
 {
     MemoryArea.WriteBytes(buffer, offset, count, mem.Bytes);
 }