C# How to get thread info from external process? Like name of the module which created the thread?

528 views Asked by At

Basically what i'm trying to do is something like this:

Start Adress

Pseudo code:

if(ThreadMomModule.Name == "Skype.dll")
{
Thread[] aa = MomModule.Threads;

  foreach(Thread at in aa){
   Suspend(aa);}
}
0

There are 0 answers