Expression.Reduce 方法
定义
将此节点简化为更简单的表达式。Reduces this node to a simpler expression. 如果 CanReduce 返回 true,则它应返回有效的表达式。If CanReduce returns true, this should return a valid expression. 此方法可以返回本身必须简化的另一个节点。This method can return another node which itself must be reduced.
public:
virtual System::Linq::Expressions::Expression ^ Reduce();
public virtual System.Linq.Expressions.Expression Reduce ();
abstract member Reduce : unit -> System.Linq.Expressions.Expression
override this.Reduce : unit -> System.Linq.Expressions.Expression
Public Overridable Function Reduce () As Expression
返回
已简化的表达式。The reduced expression.