public static async void gameWatch_EventArrived(object sender, EventArrivedEventArgs e)
 {
     if (Properties.Settings.Default.BoostRAMToggle)
     {
         try
         {
             var     pid = int.Parse(e.NewEvent.Properties["ProcessId"].Value.ToString());
             Process p   = Process.GetProcessById(pid);
             MyProcesses.EmptyWorkingSet(p);
         }
         catch (Exception ex)
         {
             Console.WriteLine($"Exception occured in queuer... {ex.Message}");
         }
     }
 }
 public static void clientWatch_EventArrived(object sender, EventArrivedEventArgs e)
 {
     if (Properties.Settings.Default.BoostRAMToggle)
     {
         Task.Run(() =>
         {
             try
             {
                 int pid   = int.Parse(e.NewEvent.Properties["ProcessId"].Value.ToString());
                 Process p = Process.GetProcessById(pid);
                 MyProcesses.EmptyWorkingSet(p);
             }
             catch (Exception)
             {
             }
         });
     }
 }