mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-18 21:45:56 +08:00

* Add exec * Fix linux tests * unnecessary dependency * Dont prefix ExecOptions with I * Consistency nits * Respond to feedback * Add toolrunner explanatory quote * Format
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]);
|
|
}
|
|
}
|
|
}
|
|
}
|