Files

15 lines
296 B
C#
Raw Permalink Normal View History

2019-05-28 15:21:45 -04:00
using System;
namespace PrintArgs
{
public static class Program
{
public static void Main(string[] args)
{
for (int i = 0 ; i < args.Length ; i++)
{
Console.WriteLine("args[{0}]: '{1}'", i, args[i]);
}
}
}
}