c#中类实例的内存使用情况

时间:2011-01-20 20:51:22

标签: c# class memory size instance

  

可能重复:
  How much memory does a C#/.NET object use?

就像标题所说,如何在c#(webforms)中检查类实例占用内存的内存量

2 个答案:

答案 0 :(得分:4)

答案 1 :(得分:2)

private System.Diagnostics.PerformanceCounter ramCounter; 
ramCounter = new System.Diagnostics.PerformanceCounter("Memory", "Available MBytes"); 

public string getAvailableRAM()
{
      return ramCounter.NextValue() + "Mb";
}

这些是你可以使用的工具:D希望有所帮助。