天天看點

強制釋放記憶體

直接上代碼,效果自己測試吧

[DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")]
        public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize);
        private void timer1_Tick(object sender, EventArgs e)
        {
            SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);//釋放記憶體
        }