2 writes to min
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1748min = Min; 2031min = (T)siInfo.GetValue(minName, typeof(T));
8 references to min
System (8)
compmod\system\collections\generic\sortedset.cs (8)
1752root = underlying.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range 1837int comp = (lBoundActive ? Comparer.Compare(min, item) : -1); 1863} else if (lBoundActive && Comparer.Compare(min, current.Item) > 0) { 1881} else if (lBoundActive && Comparer.Compare(min, node.Item) > 0) { 1908if (current.Left != null && (!lBoundActive || Comparer.Compare(min, current.Item) < 0)) { 1955this.root = underlying.FindRange(min, max, lBoundActive, uBoundActive); 1969if (lBoundActive && Comparer.Compare(min, lowerValue) > 0) { 2007info.AddValue(minName, min, typeof(T));