Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 434 Bytes

File metadata and controls

20 lines (14 loc) · 434 Bytes

Problema

15 - Escreve um programa que mostre no ecrã todos os argumentos passados na linha de comandos.

Soluções

Solução 1

// 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