码迷,mamicode.com
首页 > 其他好文 > 详细

exerunexplorer.exe

时间:2016-09-29 13:34:39      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Threading;

namespace exerunexplorer
{
    class Program
    {
        static void Main(string[] args)
        {
            string read = string.Empty;
            while (!read.StartsWith("x"))
            {
                foreach (Process process in Process.GetProcesses())
                {
                    if (args.Length == 0)
                    {
                        PrintThread(process);
                    }
                    else
                    {
                        if (process.ProcessName == args[0])
                        {
                            PrintThread(process);
                        }
                    }
                }
                read = Console.ReadLine();
            }
        }

        static void PrintThread(Process process)
        {
            Console.WriteLine(string.Format("{0} {1}", process.ProcessName, process.Threads.Count));

            Console.WriteLine("****");
            foreach (ProcessThread pt in process.Threads)
            {
                Console.WriteLine(string.Format("{0} {1}", pt.Id, pt.ThreadState));
            }
            Console.WriteLine("");
        }
    }
}

 

exerunexplorer.exe

标签:

原文地址:http://www.cnblogs.com/bruceleeliya/p/5919558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!