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

PokeInt16() public method

public PokeInt16 ( long pos, short value ) : void
pos long
value short
return void
        public void PokeInt16(long pos, short value)
        {
            blob.Contents[pos] = (byte) (value & 0x00ff);
            blob.Contents[pos+1] = (byte) (value >> 8);
        }

Same methods

TargetBinaryWriter::PokeInt16 ( short value ) : void