的方法深入c#详解内存管理以及优化

时间:2022-05-01 09:11:35 管理 我要投稿
  • 相关推荐

的方法深入c#详解内存管理以及优化

  在C# winform应用程序中,用以下代码可以进行一些内存使用的优化

  复制代码 代码如下:

  using System;

  using System.Diagnostics;

  using System.Runtime.InteropServices;

  ///

  /// 包含各种内存管理、优化的方法

  ///

  public class Memory

  {

  private static readonly Version myVersion = new Version(1, 0);

  ///

  /// 将当前进程的内存占用尺寸设置到最小

  ///

  /// 0为成功,-1为失败

  public static int SetProcessMemoryToMin()

  {

  return SetProcessMemoryToMin(Process.GetCurrentProcess().Handle);

  }

  ///

  /// 将内存占用尺寸设置到最小

  ///

  /// 需要设置内存使用范围的程序进程句柄,一般为当前进程, 如:System.Diagnostics.Process.GetCurrentProcess().Handle

  /// 0为成功,-1为失败

  public static int SetProcessMemoryToMin(IntPtr SetProcess)

  {

  if (Environment.OSVersion.Platform == PlatformID.Win32NT)

  {

  return SetProcessWorkingSetSize(SetProcess, -1, -1);

  }

  return -1;

  }

  [DllImport("kernel32.dll")]

  private static extern int SetProcessWorkingSetSize(IntPtr hProcess, int dwMinimumWorkingSetSize, int dwMaximumWorkingSetSize);

  }

【的方法深入c#详解内存管理以及优化】相关文章:

企业流程管理优化方法12-08

如何优化组织管理的方法06-03

初中教学管理的优化方法06-03

正确清理内存条和内存槽的方法03-09

提高电脑内存性能的方法08-13

台式电脑安装内存的方法04-05

手机内存满了如何清理优化06-04

手机虚拟内存增加方法03-30

获取电脑最大支持内存方法06-03

用U盘扩展内存的方法05-31