1 write to Underlying
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Enumerable`1.cs (1)
22this.Underlying = underlying;
11 references to Underlying
Microsoft.CodeAnalysis (11)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Collection.cs (3)
36return this.Underlying.Contains(item); 41this.Underlying.CopyTo(array, arrayIndex); 48return this.Underlying.Count;
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Enumerable`1.cs (1)
27return this.Underlying.GetEnumerator();
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Enumerable`2.cs (1)
25return this.Underlying.GetEnumerator();
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (6)
41return Underlying.IsProperSubsetOf(other); 46return Underlying.IsProperSupersetOf(other); 51return Underlying.IsSubsetOf(other); 56return Underlying.IsSupersetOf(other); 61return Underlying.Overlaps(other); 66return Underlying.SetEquals(other);