System.Data.ExpressionParser.NodePush C# (CSharp) 메소드

NodePush() 개인적인 메소드

Push an operand node onto the node stack
private NodePush ( ExpressionNode node ) : void
node ExpressionNode
리턴 void
        private void NodePush(ExpressionNode node)
        {
            Debug.Assert(null != node, "null NodePush");

            if (_topNode >= MaxPredicates - 2)
            {
                throw ExprException.ExpressionTooComplex();
            }
            _nodeStack[_topNode++] = node;
        }