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

18 lines
445 B
C#

using System;
using System.IO;
using System.Reflection;
namespace WithoutArgs
{
internal static class Program
{
public static void Main()
{
Console.WriteLine($"[*] Hello World from `{Assembly.GetExecutingAssembly().FullName}`!");
Console.WriteLine("[*] I have no arguments and live a happy life!");
Console.WriteLine("[*] Bye!");
Console.WriteLine();
}
}
}