Enum Threads For Pid : ProcessThreadCollection « Thread « C# / CSharp Tutorial






using System;
using System.Diagnostics;

class MyProcessManipulator {
    public static void EnumThreadsForPid(int pID) {
        Process theProc;
        try {
            theProc = Process.GetProcessById(pID);
        } catch {
            return;
        }
        Console.WriteLine(theProc.ProcessName);
        ProcessThreadCollection theThreads = theProc.Threads;
        foreach (ProcessThread pt in theThreads) {
            string info = string.Format("-> Thread ID: {0}\tStart Time {1}\tPriority {2}",
            pt.Id, pt.StartTime.ToShortTimeString(), pt.PriorityLevel);
            Console.WriteLine(info);
        }
    }
    static void Main(string[] args) {
        Console.Write("PID: ");
        int theProcID = int.Parse(Console.ReadLine());
        EnumThreadsForPid(theProcID);
    }
}








20.30.ProcessThreadCollection
20.30.1.Enum Threads For Pid