NitroDebugger.RSP.Packets.WriteMemoryCommand.WriteMemoryCommand C# (CSharp) Метод

WriteMemoryCommand() публичный Метод

public WriteMemoryCommand ( uint address, int size, byte data ) : System
address uint
size int
data byte
Результат System
        public WriteMemoryCommand(uint address, int size, byte[] data)
            : base("M")
        {
            this.Address = address;
            this.Size = size;
            this.data = (byte[])data.Clone();
        }