BExplorer.Shell.ShellView._MaintenanceTimer_Tick C# (CSharp) Méthode

_MaintenanceTimer_Tick() private méthode

private _MaintenanceTimer_Tick ( Object sender, EventArgs e ) : void
sender Object
e EventArgs
Résultat void
    private void _MaintenanceTimer_Tick(Object sender, EventArgs e) {
      new Thread(() => {
        var curProcess = Process.GetCurrentProcess();
        if (curProcess.WorkingSet64 > 100 * 1024 * 1024) Shell32.SetProcessWorkingSetSize(curProcess.Handle, -1, -1);
        curProcess.Dispose();
      }).Start();
    }
ShellView