public static bool TryGetMethod(MethodInfo methodInfo, out Method method) { method = null; try { method = new Method(methodInfo); return true; } catch { return false; } }
public MethodInvoker(Method method, object[] parameters) { Method = method; Parameters = parameters; }