XsltLibrary.RelationalOperator 方法

定义

根据传递的 left 计算 right 表达式是大于等于还是小于等于 opCode 表达式。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 bool RelationalOperator(double opCode, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ left, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ right);
public bool RelationalOperator (double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right);
member this.RelationalOperator : double * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> -> bool
Public Function RelationalOperator (opCode As Double, left As IList(Of XPathItem), right As IList(Of XPathItem)) As Boolean

参数

opCode
Double

指定如何计算两个表达式:

如果操作码等于 2,则计算 XPath 表达式“左侧 < 右侧”。

如果操作码等于 3,则计算 XPath 表达式“左侧 <= 右侧”。

如果操作码等于 4,则计算 XPath 表达式“左侧 > 右侧”。

如果操作码等于 5,则计算 XPath 表达式“左侧 >= 右侧”

left
IList<XPathItem>

要计算的表达式。

right
IList<XPathItem>

要计算的表达式。

返回

Boolean

一个布尔值,如果左侧表达式大于或等于右侧表达式,则为 True。

适用于