C# nameof 演算子で引数名などを文字列として取得できる

// "引数名は args です" と出力される
Console.WriteLine($"引数名は {nameof(args)} です");