Exemple #1
0
 public Operand InvokeStatic(Type target, string method, int flag, params Operand[] args)
 {
     if (target == null)
     {
         throw new InvalidOperationException("method " + method + " invoked on object of null type; error.");
     }
     return(Static.Invoke(target, method, args));
 }
 public void Invoke(Type target, string method, params Operand[] args)
 {
     DoInvoke(Static.Invoke(target, method, args));
 }
Exemple #3
0
 public void InvokeAssign(Operand destination, Type target, string method, params Operand[] args)
 {
     DoInvokeAssign(destination, Static.Invoke(target, method, args));
 }