public bool Execute <T>(ProcessMemory mem, T param) where T : struct
        {
            bool ret = false;

            using (RemoteAllocation ralloc = RemoteAllocation.CreateNew <T>(mem, param))
            {
                ret = Execute(ralloc.Address);
            }
            return(ret);
        }
 public RemoteAllocation Allocate <T>(T data) where T : struct
 {
     return(RemoteAllocation.CreateNew <T>(this, data));
 }