就像标题所说,如何在c#(webforms)中检查类实例占用内存的内存量
答案 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希望有所帮助。