码迷,mamicode.com
首页 > Web开发 > 详细

.net C# 释放内存 例子

时间:2014-08-08 11:59:05      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:使用   os   io   for   ar   size   .net   c#   

namespace myCommon
{
    public class SysVar
    {

        [DllImport("kernel32.dll")]
        public static extern bool SetProcessWorkingSetSize(IntPtr handle, int minimumWorkingSetSize, int maximumWorkingSetSize);

        /// <summary>
        /// 释放内存
        /// </summary>
        public static void FlushMemory()
        {
            GC.Collect();
            GC.WaitForPendingFinalizers();
            if (Environment.OSVersion.Platform == PlatformID.Win32NT)
            {
                SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);
            }
        }
    }

}

//使用例子:

        private void xfrmBase_FormClosed(object sender, FormClosedEventArgs e)
        {
            myCommon.SysVar.FlushMemory();
        }

.net C# 释放内存 例子,布布扣,bubuko.com

.net C# 释放内存 例子

标签:使用   os   io   for   ar   size   .net   c#   

原文地址:http://www.cnblogs.com/hclw/p/3898663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!