Files
2023-03-23 22:26:18 +09:00

22 lines
539 B
C#

using System;
using System.IO;
using System.Reflection;
namespace WithArgs
{
internal static class Program
{
public static void Main(string[] args)
{
Console.WriteLine($"[*] Hello World from `{Assembly.GetExecutingAssembly().FullName}`!");
Console.WriteLine($"[*] I was given {args.Length} arguments");
foreach (var s in args)
{
Console.WriteLine($"___ ({s.Length}) {s}");
}
Console.WriteLine();
}
}
}