2 writes to max
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1749max = Max; 2030max = (T)siInfo.GetValue(maxName, typeof(T));
6 references to max
System (6)
compmod\system\collections\generic\sortedset.cs (6)
1752root = underlying.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range 1841comp = (uBoundActive ? Comparer.Compare(max, item) : 1); 1911if (current.Right != null && (!uBoundActive || Comparer.Compare(max, current.Item) > 0)) { 1955this.root = underlying.FindRange(min, max, lBoundActive, uBoundActive); 1973if (uBoundActive && Comparer.Compare(max, upperValue) < 0) { 2006info.AddValue(maxName, max, typeof(T));