using System; namespace GetPermissionToExec { internal class MethodInvoker { private Func p; public MethodInvoker(Func p) { this.p = p; } } }