Answers:
您可以使用:
Process proc = Process.GetCurrentProcess();
要获取当前流程并使用:
proc.PrivateMemorySize64;
获取专用内存使用率。有关更多信息,请参见此链接。
System.Environment具有WorkingSet-一个64位带符号整数,其中包含映射到进程上下文的物理内存的字节数。
如果您需要很多细节,可以使用System.Diagnostics.PerformanceCounter,但是设置起来会花费更多的精力。
看这里了解详情。
private PerformanceCounter cpuCounter;
private PerformanceCounter ramCounter;
public Form1()
{
InitializeComponent();
InitialiseCPUCounter();
InitializeRAMCounter();
updateTimer.Start();
}
private void updateTimer_Tick(object sender, EventArgs e)
{
this.textBox1.Text = "CPU Usage: " +
Convert.ToInt32(cpuCounter.NextValue()).ToString() +
"%";
this.textBox2.Text = Convert.ToInt32(ramCounter.NextValue()).ToString()+"Mb";
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void InitialiseCPUCounter()
{
cpuCounter = new PerformanceCounter(
"Processor",
"% Processor Time",
"_Total",
true
);
}
private void InitializeRAMCounter()
{
ramCounter = new PerformanceCounter("Memory", "Available MBytes", true);
}
如果您将值设为0,则需要调用NextValue()
两次。然后,它给出了CPU使用率的实际值。在这里查看更多详细信息。
除了@JesperFyhrKnudsen的答案和@MathiasLykkegaardLorenzen的评论之外,您最好dispose
返回Process
在使用它后。
因此,为了处置Process
,您可以将其包装在using
作用域中或调用Dispose
返回的进程(proc
变量)。
using
范围:
var memory = 0.0;
using (Process proc = Process.GetCurrentProcess())
{
// The proc.PrivateMemorySize64 will returns the private memory usage in byte.
// Would like to Convert it to Megabyte? divide it by 2^20
memory = proc.PrivateMemorySize64 / (1024*1024);
}
或Dispose
方法:
var memory = 0.0;
Process proc = Process.GetCurrentProcess();
memory = Math.Round(proc.PrivateMemorySize64 / (1024*1024), 2);
proc.Dispose();
现在,您可以使用memory
转换为兆字节的变量。
^
是按位XOR,不是幂。因此,只要使用proc.PrivateMemorySize64 / (1024*1024)
,或proc.PrivateMemorySize64 / (1 << 20)
proc.PrivateMemorySize64 / (1024 * 1024)
因为乘法没有除法优先级。
对于完整的系统,您可以添加Microsoft.VisualBasic Framework作为参考。
Console.WriteLine("You have {0} bytes of RAM",
new Microsoft.VisualBasic.Devices.ComputerInfo().TotalPhysicalMemory);
Console.ReadLine();
System.Diagnostics.Process
堂课。