Esempio n. 1
0
 public MethodWrapper(Type type, string methodName)
 {
     TypeInfo   = new TypeWrapper(type);
     MethodInfo = type.GetMethod(methodName);
 }
Esempio n. 2
0
 public MethodWrapper(Type type, MethodInfo method)
 {
     TypeInfo   = new TypeWrapper(type);
     MethodInfo = method;
 }