Пример #1
0
 public MonoInstanceMethod(Type type, string methodName)
 {
     this.Name       = methodName;
     this.instance   = Activator.CreateInstance(type);
     this.methodInfo = type.GetMethod(methodName);
 }