GetCurrentProcess()方法进程资源查询实例

本文部分内容来源于书籍和官网网摘。

GetCurrentProcess()方法获取“新的 Process 组件”并将其与“当前活动的”进程关联。

返回Process

A new Process component associated with the process resource that is running the calling application.一个与 正在被应用调用的正在运行的进程资源 关联的Process类组件。

Use this method to create a new Process instance and associate it with the process resource on the local computer.

使用此方法创建新的Process类实例并将其与本地计算机上的进程资源关联。

但是 GetCurrentProcess()方法本身 “并不启动或者调用” 被查询进程资源的进程。

GetCurrentProcess()方法主要用于“检索在本地计算机上的运行中的进程的进程资源”。

如果您不想要检索所有计算机上运行的进程,你可以通过

你可能感兴趣的:(进程和线程,C#,性能编程)