2 writes to expressions
System.Xml (2)
System\Xml\XPath\Internal\SortQuery.cs (2)
142this.expressions = new Query[ size]; 159this.expressions = newExpressions;
10 references to expressions
System.Xml (10)
System\Xml\XPath\Internal\SortQuery.cs (10)
148Debug.Assert(this.expressions.Length == this.comparers.Length); 149Debug.Assert(0 < this.expressions.Length); 150Debug.Assert(0 <= numSorts && numSorts <= this.expressions.Length); 152if (numSorts == this.expressions.Length) { 156newExpressions[i] = this.expressions[i]; 162Debug.Assert(numSorts < this.expressions.Length); 169this.expressions[numSorts] = evalQuery; 177return this.expressions[i]; 199clone.expressions[i] = (Query)this.expressions[i].Clone(); // Expressions should be cloned because Query should be cloned