Nintenlord.ROMHacking.AbstractROM.InsertData C# (CSharp) Method

InsertData() public method

public InsertData ( int offset, byte value ) : void
offset int
value byte
return void
        public void InsertData(int offset, byte value)
        {
            InsertData(offset, BitConverter.GetBytes(value));
        }

Same methods

AbstractROM::InsertData ( int offset, byte data, int index ) : void
AbstractROM::InsertData ( int offset, byte data, int index, int length ) : void
AbstractROM::InsertData ( int offset, int value ) : void
AbstractROM::InsertData ( int offset, short value ) : void
AbstractROM::InsertData ( int offset, uint value ) : void