本文介绍了如何在加载的dll中找到进程ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用一个插件,它基本上是一个加载的DLL。我可能有两个加载插件的同一个应用程序的实例。我希望能够从加载DLL的应用程序中找到进程ID。

I am working with a plugin which is basically a loaded DLL. I may have both instances of the same application that loads the plugin. I want to be able to find out the process ID from the application that loaded the DLL.

推荐答案

// Get the current process.
Process currentProcess = Process.GetCurrentProcess();

//Process id
int Id = currentprocess.Id;
...




这篇关于如何在加载的dll中找到进程ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 03:25