/// <summary>
        /// Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
        /// </summary>
        /// <param name="expression">The <see cref="Expression" /> property of the result.</param>
        /// <param name="arguments">The <see cref="Arguments" /> property of the result.</param>
        /// <returns>This expression if no children changed, or an expression with the updated children.</returns>
        public InvokeDynamicCSharpExpression Update(Expression expression, IEnumerable <DynamicCSharpArgument> arguments)
        {
            if (expression == Expression && SameElements(ref arguments, Arguments))
            {
                return(this);
            }

            return(DynamicCSharpExpression.DynamicInvoke(expression, arguments, Flags, Context));
        }
Esempio n. 2
0
        /// <summary>
        /// Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
        /// </summary>
        /// <param name="expression">The <see cref="Expression" /> property of the result.</param>
        /// <param name="arguments">The <see cref="Arguments" /> property of the result.</param>
        /// <returns>This expression if no children changed, or an expression with the updated children.</returns>
        public InvokeDynamicCSharpExpression Update(Expression expression, IEnumerable <DynamicCSharpArgument> arguments)
        {
            if (expression == this.Expression && arguments == this.Arguments)
            {
                return(this);
            }

            return(DynamicCSharpExpression.DynamicInvoke(expression, arguments, Flags, Context));
        }