2 writes to _results
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (2)
24_results = new List<SortKey>(); 31_results = new List<SortKey>(other._results);
11 references to _results
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (11)
31_results = new List<SortKey>(other._results); 60SortKey key = new SortKey(numSorts, /*originalPosition:*/_results.Count, eNext.Clone()); 67_results.Add(key); 69_results.Sort(_comparer); 75_results.Clear(); 83Debug.Assert(0 <= count && count <= _results.Count); 84if (count < _results.Count) 86return _results[count++].Node; 95Debug.Assert(0 <= count && count <= _results.Count); 100return _results[count - 1].Node; 113public override int Count { get { return _results.Count; } }