Rav
Rav

Reputation: 31

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

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);}
}

Upvotes: 3

Views: 523

Answers (0)

Related Questions