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);
 }