2 writes to numSorts
System.Xml (2)
System\Xml\XPath\Internal\SortQuery.cs (2)
171numSorts ++; 201clone.numSorts = this.numSorts;
13 references to numSorts
System.Xml (13)
System\Xml\XPath\Internal\SortQuery.cs (13)
150Debug.Assert(0 <= numSorts && numSorts <= this.expressions.Length); 152if (numSorts == this.expressions.Length) { 153Query[] newExpressions = new Query[ numSorts * 2]; 154IComparer[] newComparers = new IComparer[numSorts * 2]; 155for (int i = 0; i < numSorts; i ++) { 162Debug.Assert(numSorts < this.expressions.Length); 169this.expressions[numSorts] = evalQuery; 170this.comparers[ numSorts] = comparer; 174public int NumSorts { get { return numSorts; } } 195XPathSortComparer clone = new XPathSortComparer(this.numSorts); 197for (int i = 0; i < this.numSorts; i ++) { 201clone.numSorts = this.numSorts;