mirror of
https://github.com/yamakadi/clroxide
synced 2026-06-08 18:28:14 +00:00
19 lines
529 B
C#
19 lines
529 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 am running in `{AppDomain.CurrentDomain}`!");
|
|
Console.WriteLine("[*] I have no arguments and live a happy life!");
|
|
Console.WriteLine("[*] Bye!");
|
|
|
|
Console.WriteLine();
|
|
}
|
|
}
|
|
} |