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();
        }