zoukankan      html  css  js  c++  java
  • exerunexplorer.exe

    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("");
            }
        }
    }
  • 相关阅读:
    十年经验手把手教你选购翡翠
    眼睛视力
    玻璃
    前端小技巧
    儿童牙齿矫正
    MySQL的JDBC驱动源码解析
    书海杂谈
    电子设备
    股市国家队
    影视
  • 原文地址:https://www.cnblogs.com/bruceleeliya/p/5919558.html
Copyright © 2011-2022 走看看