码迷,mamicode.com
首页 > Windows程序 > 详细

c#垃圾清除,特别有效

时间:2018-12-22 13:46:46      阅读:418      评论:0      收藏:0      [点我收藏+]

标签:extern   set   清除   wait   system   垃圾   int   hand   kernel   

1 [DllImport("kernel32.dll"),EntryPoint = "SetProcessWorkingSetSize"]
2 public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize,intMaxSize); 
3 
4 GC.Collect();
5 GC.WaitForPendingFinalizers();
6 if(Environment.OSVersion.Platform == PlatformID,Win32NT)
7 {
8     SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle,-1,-1);
9 }

 

c#垃圾清除,特别有效

标签:extern   set   清除   wait   system   垃圾   int   hand   kernel   

原文地址:https://www.cnblogs.com/-Neo/p/10160700.html

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