2 writes to results
System.Xml (2)
System\Xml\XPath\Internal\SortQuery.cs (2)
24this.results = new List<SortKey>(); 30this.results = new List<SortKey>(other.results);
11 references to results
System.Xml (11)
System\Xml\XPath\Internal\SortQuery.cs (11)
30this.results = new List<SortKey>(other.results); 55SortKey key = new SortKey(numSorts, /*originalPosition:*/this.results.Count, eNext.Clone()); 61results.Add(key); 63results.Sort(this.comparer); 68this.results.Clear(); 75Debug.Assert(0 <= count && count <= results.Count); 76if (count < this.results.Count) { 77return this.results[count++].Node; 84Debug.Assert(0 <= count && count <= results.Count); 88return results[count - 1].Node; 100public override int Count { get { return results.Count; } }