引数


public static void Main(string[] args) { for(int i=0; i<args.Length; ++i) { Console.Write("{0}番目のコマンドライン引数は{1}です。\n", i, args[i] ); } }