如何当即回收内存C#

C#如何当即回收内存

1.把对象赋值为nullthis

2.当即调用GC.Collect();
 
注意:这个也只是强制垃圾回收器去回收,但具体何时执行不肯定。 
 
代码:
 
 
[System.Runtime.InteropServices.DllImportAttribute("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize", ExactSpelling = true, CharSet =System.Runtime.InteropServices.CharSet.Ansi, SetLastError = true)]
        private static extern int SetProcessWorkingSetSize(IntPtr process, int minimumWorkingSetSize, int maximumWorkingSetSize);

 #region 内存回收
   public  void ClearMemory()
 {
     GC.Collect();
     GC.SuppressFinalize(this);
 
 
     if (Environment.OSVersion.Platform == PlatformID.Win32NT)
     {
         SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);
     }
 }
 #endregion

ClearMemory();

 

 

https://blog.csdn.net/xwnxwn/article/details/78009071spa

相关文章
相关标签/搜索