Guest User

Untitled

a guest
Dec 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Process pc = Process.GetProcessesByName("notepad")[0];
  2. ProcessThreadCollection PTC = pc.Threads;
  3. foreach (ProcessThread PT in PTC)
  4. {
  5. listBox1.Items.Add(PT.StartAddress);
  6. }
Add Comment
Please, Sign In to add comment