public static void Main()
Console.WriteLine("Hello World");
ExecuteMethod(() => SomeMethod1(param1, param2), new Action<string,string>(SomeMethod1).Method.Name);
private static void ExecuteMethod(Action action, string name)
Console.WriteLine("name is " + name);
private static void SomeMethod1(string param1, string param2)