Files
yamakadi-clroxide/test/source/WithArgs/Program.cs
T
2023-03-24 15:43:22 +09:00

23 lines
623 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 am running in `{AppDomain.CurrentDomain}`!");
Console.WriteLine($"[*] I was given {args.Length} arguments");
foreach (var s in args)
{
Console.WriteLine($"___ ({s.Length}) {s}");
}
Console.WriteLine();
}
}
}