using System.Runtime.CompilerServices;
public static void Main()
Action x = () => WhoDoneIt();
private static void Test(Action action) {
private static Action ActionFactory() {
return () => WhoDoneIt();
private static void WhoDoneIt([CallerMemberName] string caller = null) {
Console.WriteLine(caller);