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