using System;
using System.Collections.Generic;
namespace ConsoleInAndOut
{
class Program
static void Main()
string[] cmds = new string[] {"dir", "help", "set", "ping 8.8.8.8" };
List<string> args = new List<string>();
foreach (string cmd in cmds)
Console.WriteLine(cmd);
Console.ReadLine();
}