using System.Runtime.CompilerServices;
using static my.notmacros;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string whoami([CallerMemberName] string caller_name = null)
if (string.IsNullOrEmpty(caller_name))
if (string.IsNullOrWhiteSpace(caller_name))
public static void Main()
Console.WriteLine("Hello from {0}", my_name);