HelloWorld/Program.cs

20 lines
429 B
C#

namespace MyApp
{
internal class Program
{
static void Main(string[] args)
{
if (args.Length == 0)
{
Console.WriteLine("Hello World!");
}
else
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine($"Hello {args[i]}!");
}
}
}
}
}