Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ cmpQueryStringE()

static bool MS.Internal.Xml.XPath.LogicalExpr.cmpQueryStringE ( Operator::Op op,
object val1,
object val2 )
inlinestaticprivate

Definition at line 175 of file LogicalExpr.cs.

176 {
177 NodeSet nodeSet = new NodeSet(val1);
178 string n = (string)val2;
179 while (nodeSet.MoveNext())
180 {
181 if (cmpStringStringE(op, nodeSet.Value, n))
182 {
183 return true;
184 }
185 }
186 return false;
187 }
static bool cmpStringStringE(Operator.Op op, string n1, string n2)

References MS.Internal.Xml.XPath.LogicalExpr.cmpStringStringE(), MS.Internal.Xml.XPath.LogicalExpr.NodeSet.MoveNext(), System.Xml.XPath.NodeSet, and MS.Internal.Xml.XPath.LogicalExpr.NodeSet.Value.