NitroDebugger.RSP.Packets.WriteMemoryCommand.WriteMemoryCommand C# (CSharp) Method

WriteMemoryCommand() public method

public WriteMemoryCommand ( uint address, int size, byte data ) : System
address uint
size int
data byte
return System
        public WriteMemoryCommand(uint address, int size, byte[] data)
            : base("M")
        {
            this.Address = address;
            this.Size = size;
            this.data = (byte[])data.Clone();
        }