·
Across the Great Wall, we can reach every corner in the world.

可以加下语言类型,语法高亮,csharp

static void Main(string[] args)
{
    // command.getProcessList();
    Command command = new Command();       
    command.Output += Command_Output;
    command.Error += Command_Error;
    command.Exited += Command_Exited;
    while (true)
    {
        string cmd = Console.ReadLine();
        command.RunCMD(cmd);
    }
}
Replies
1

撸主,这是什么语言开发的?