使用 C# 的另一个进程的内存使用情况和执行时间?

发布于 2024-09-28 02:55:39 字数 155 浏览 2 评论 0原文

我需要通过另一个应用程序加载的应用程序的内存使用情况和处理时间。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一曲爱恨情仇 2024-10-05 02:55:39

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文