Not() public méthode

public Not ( QilNode child ) : QilUnary
child QilNode
Résultat QilUnary
        public QilNode Not(QilNode child)
        {
            if (!_debug)
            {
                switch (child.NodeType)
                {
                case QilNodeType.True:
                    return(_f.False());

                case QilNodeType.False:
                    return(_f.True());

                case QilNodeType.Not:
                    return(((QilUnary)child).Child);
                }
            }
            return(_f.Not(child));
        }