Example #1
0
 public static MethodCallExpression MethodCall(Expression insatnce, Aqua.TypeSystem.MethodInfo methodInfo, IEnumerable <Expression> arguments)
 => Call(insatnce, methodInfo, arguments);
Example #2
0
 public static MethodCallExpression Call(Expression insatnce, Aqua.TypeSystem.MethodInfo methodInfo, IEnumerable <Expression> arguments)
 {
     return(new MethodCallExpression(insatnce, methodInfo, arguments));
 }
Example #3
0
 public static ElementInit ElementInit(Aqua.TypeSystem.MethodInfo addMethod, System.Collections.ObjectModel.ReadOnlyCollection <Expression> arguments)
 {
     return(new ElementInit(addMethod, arguments));
 }