C # Implementation cleans up system memory

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.