winform 终于降内存了 fuck
时间:2011-05-27 来源:to be or not
参考 http://www.itwis.com/html/net/winform/20110414/10191.html
public static void GarbageCollect()
{
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
}
public static void FlushMemory()
{
GarbageCollect();
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
{
SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);
}
}
[DllImport("kernel32.dll")]
public static extern bool SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize);
定时执行FlushMemory() 一分钟执行一次
相关阅读 更多 +