2 writes to underlying
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1747underlying = Underlying; 2034underlying = new SortedSet<T>();
14 references to underlying
System (14)
compmod\system\collections\generic\sortedset.cs (14)
1752root = underlying.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range 1784bool ret = underlying.AddIfNotPresent(item); 1808bool ret = underlying.Remove(item); 1826underlying.Remove(toRemove[toRemove.Count - 1]); 1831version = underlying.version; 1953Debug.Assert(underlying != null, "Underlying set no longer exists"); 1954if (this.version != underlying.version) { 1955this.root = underlying.FindRange(min, max, lBoundActive, uBoundActive); 1956this.version = underlying.version; 1977TreeSubSet ret = (TreeSubSet)underlying.GetViewBetween(lowerValue, upperValue); 2044underlying.Add(items[i]); 2047underlying.version = siInfo.GetInt32(VersionName); 2048count = underlying.count; 2049version = underlying.version - 1;