使用 C# 的另一个进程的内存使用情况和执行时间?
我需要通过另一个应用程序加载的应用程序的内存使用情况和处理时间。我正在使用 C#。目前我正在使用 Process.WorkingSet 来获取内存使用情况 类似地 Process.TotalProcessTime
来获取执行时间,但它没有给出任何值。那么你有什么建议吗?
I need the memory usage and processing time for an application loaded through another application. I am using C#. Currently I am using Process.WorkingSet
to get memory usage
similarly Process.TotalProcessTime
to get time for execution, but it doesn't give any value. So have you make any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 WMI 获取此类信息,受到 System.Management 命名空间的良好支持。首先下载 WMI Code Creator 实用程序,它允许您试验查询并可以自动生成您需要的 C#。
您想要查询 Win32_Process,它提供了有关进程的大量信息。 PrivatePageCount 可以很好地衡量它使用的、不被任何其他进程共享的内存量。 KernelModeTime 和 UserModeTime 为您提供执行代码所花费的时间。
Use WMI to get this kind of info, well supported by the System.Management namespace. Get started by downloading the WMI Code Creator utility, it lets you experiment with queries and can auto-generate the C# you'll need.
You want to query Win32_Process, it provides lots of info about a process. PrivatePageCount would be a good measure for the amount of memory it uses that isn't shared by any other process. KernelModeTime and UserModeTime gives you time spent executing code.