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