public MethodInvocationExpression (Expression target, ExpressionCollection arguments) { _target = target; _arguments = arguments; }
ExpressionCollection PopRange (int count) { ExpressionCollection range = new ExpressionCollection (); for (int i=0; i < count; ++i) { range.Insert (0, Pop ()); } return range; }
public MethodInvocationExpression(Expression target, ExpressionCollection arguments) { _target = target; _arguments = arguments; }