System.Xml.Xsl.Qil.QilFactory.Negate C# (CSharp) Method

Negate() public method

public Negate ( QilNode child ) : QilUnary
child QilNode
return QilUnary
        public QilUnary Negate(QilNode child) {
            QilUnary n = new QilUnary(QilNodeType.Negate, child);
            n.XmlType = this.typeCheck.CheckNegate(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

Exemplo n.º 1
0
 //-----------------------------------------------
 // arithmetic operators
 //-----------------------------------------------
 public QilNode Negate(QilNode child)
 {
     return(_f.Negate(child));
 }