Jinshan Memory Finishing tool, 360 memory Cleanup tool is very useful, can minimize the system memory, improve system speed. In fact, these things C # can also be done, the principle is the process of the system process memory is optimized individually.
Most of the online use of the system's SetProcessWorkingSetSize function API is recommended, but it has not been found in practice. We recommend that you use the Emptyworkingset function. Here's the code:
[DllImport ("Psapi.dll")] Static extern intEmptyworkingset (IntPtr hwproc); /// <summary> ///Freeing Memory/// </summary> Public Static voidclearmemory () {GC. Collect (); Gc. WaitForPendingFinalizers (); Process[] Processes=process.getprocesses (); foreach(Process processinchprocesses) { //ForThe system process denies access and causes an error, and the exception is not processed here. Try{emptyworkingset (process. Handle); } Catch { } } }
C # Implementation cleans up system memory