1
 2
 3
 4
 5
 6
 7
 8
 9
10
//http://ja.doukaku.org/118/ 投稿用
using System;
class Program {
    static void Main(string[] args) {
        for(int i = 1; i < System.Environment.GetCommandLineArgs().Length; i++) {
            Console.WriteLine(System.Environment.GetCommandLineArgs()[i]);
        }
        Console.ReadLine();
    }
}