C#相关

 

C# 加密壳:.NET Reactor 最新破解版

C# DLL 与 EXE 打包工具:ILMergeGui

C#调用大漠插件实现常用功能

C#模拟鼠标操作

C# 模拟键盘输入

获取内存占用

System.Diagnostics.Process proc = assign your process here :-)

int memsize = 0; // memsize in Megabyte
PerformanceCounter PC = new PerformanceCounter();
PC.CategoryName = "Process";
PC.CounterName = "Working Set - Private";
PC.InstanceName = proc.ProcessName;
memsize = Convert.ToInt32(PC.NextValue()) / (int)(1024);
PC.Close();
PC.Dispose();
View Code
原文地址:https://www.cnblogs.com/halou/p/3351238.html