获取另一个进程的值 CLR 内存性能计数器
我有一些启动另一个进程的 C# 代码。现在我希望能够获取该进程 Gen2 堆大小的 CLR 内存性能计数器的值。
有人可以帮助我开始或指导我到一个图书馆,让这变得容易吗?
I have some C# code which starts up another process. Now I want to be able to obtain the value of the CLR Memory Performance counter for that process' Gen2 Heap size.
Can anybody get me started or direct me to a library which makes this easy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PerformanceCounter 类。像这样:
Use the PerformanceCounter class. Like this:
您需要构建的是代码分析器,请从此处开始阅读:http://msdn .microsoft.com/en-us/library/s5ec0es1.aspx。
What you need to build is a code profiler, start reading here: http://msdn.microsoft.com/en-us/library/s5ec0es1.aspx.