XSpect.Yacq.Expressions.YacqExpression.Reduce C# (CSharp) Méthode

Reduce() public méthode

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
Résultat System.Linq.Expressions.Expression
        public override Expression Reduce()
        {
            return this.Reduce(null);
        }

Same methods

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