C# 清除内存
互联网 2022/5/14 7:21:09
#region 内存回收[DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")]public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize);public static void ClearMemory(){GC.Collect();GC.WaitFo…
#region 内存回收 [DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")] public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize); public static void ClearMemory() { GC.Collect(); GC.WaitForPendingFinalizers(); if (Environment.OSVersion.Platform == PlatformID.Win32NT) { Form1.SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1); } } #endregion

关于找一找教程网
本站文章仅代表作者观点,不代表本站立场,所有文章非营利性免费分享。
本站提供了软件编程、网站开发技术、服务器运维、人工智能等等IT技术文章,希望广大程序员努力学习,让我们用科技改变世界。
[C# 清除内存]http://www.zyiz.net/tech/detail-320852.html
赞(0)
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2022-05-27上传图片透明色变黑色 (Bitmap 图片) c#
- 2022-05-27ApeForms | C#-WinForm窗体仿Android桌面(左右翻页)
- 2022-05-27C# 字符串转日期格式
- 2022-05-27ffmpeg视频格式转换h264 C#调用exe
- 2022-05-27【IDL代码库】利用IDLDrawWidget实现C#与IDL混合编程
- 2022-05-27C#——滑动开关按钮
- 2022-05-27定制ASP.NET 6.0的应用配置
- 2022-05-27乘风破浪,遇见最美Windows 11之现代Windows桌面应用开发 - 微软跨平台UI框架.NET MAUI 6正式发布,一套代码面向多平台
- 2022-05-27C# AES CBC加密解密