mirror of https://github.com/actions/toolkit
15 lines
296 B
C#
15 lines
296 B
C#
|
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]);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|