I want to have a class that will execute any external method, like this:
class CrazyClass { //other stuff public AnyReturnType Execute(AnyKindOfMethod M
public static void AnyFuncExecutor(Action a) { try { a(); } catch (Exception exception) { throw; } }