XSpect.Yacq.Expressions.YacqExpression.Reduce C# (CSharp) Метод

Reduce() публичный Метод

Reduces this node to a simpler expression. If CanReduce returns true, this should return a valid expression. This method can return another node which itself must be reduced.
public Reduce ( ) : Expression
Результат System.Linq.Expressions.Expression
        public override Expression Reduce()
        {
            return this.Reduce(null);
        }

Same methods

YacqExpression::Reduce ( SymbolTable symbols, Type expectedType = null ) : Expression