System.Linq.Expressions.MemberInitExpression.Reduce C# (CSharp) Method

Reduce() public method

Reduces the MemberInitExpression to a simpler expression. If CanReduce returns true, this should return a valid expression. This method is allowed to return another node which itself must be reduced.
public Reduce ( ) : Expression
return Expression
        public override Expression Reduce()
        {
            return ReduceMemberInit(NewExpression, Bindings, keepOnStack: true);
        }