15 - Escreve um programa que mostre no ecrã todos os argumentos passados na linha de comandos.
// The Length property provides the number of array elements
System.Console.WriteLine("parameter count = {0}", args.Length);
for (int i = 0; i < args.Length; i++)
{
System.Console.WriteLine("Arg[{0}] = [{1}]", i, args[i]);
}
Por Diana Nóia