Mono.Debugger.TargetBinaryWriter.PokeBuffer C# (CSharp) Method

PokeBuffer() public method

public PokeBuffer ( long pos, byte buffer ) : void
pos long
buffer byte
return void
        public void PokeBuffer(long pos, byte[] buffer)
        {
            Array.Copy (buffer, 0, blob.Contents, (int) pos, buffer.Length);
        }