예제 #1
0
 public XPathPredicate(IXPathOperand left, XPathOperator op, IXPathOperand right)
 {
     this.Left           = left;
     this.Operator       = op;
     this.Right          = right;
     this.RightFormatted = right.ToString();
 }
예제 #2
0
 public XPathPredicate(IXPathOperand left)
 {
     this.Left     = left;
     this.Operator = XPathOperator.Unknown;
 }