4 instantiations of IdentifierCollection
Microsoft.CodeAnalysis (4)
MetadataReader\PEModule.cs (4)
862return new IdentifierCollection(typeNames); 866return new IdentifierCollection(); 885return new IdentifierCollection(namespaceNames); 889return new IdentifierCollection();
12 references to IdentifierCollection
Microsoft.CodeAnalysis (12)
Collections\IdentifierCollection.Collection.cs (4)
17protected readonly IdentifierCollection IdentifierCollection; 20protected CollectionBase(IdentifierCollection identifierCollection) 98public CaseSensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection) 107public CaseInsensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection)
MetadataReader\PEModule.cs (8)
68private readonly Lazy<IdentifierCollection> _lazyTypeNameCollection; 69private readonly Lazy<IdentifierCollection> _lazyNamespaceNameCollection; 157_lazyTypeNameCollection = new Lazy<IdentifierCollection>(ComputeTypeNameCollection); 158_lazyNamespaceNameCollection = new Lazy<IdentifierCollection>(ComputeNamespaceNameCollection); 851private IdentifierCollection ComputeTypeNameCollection() 870private IdentifierCollection ComputeNamespaceNameCollection() 3925internal IdentifierCollection TypeNames 3933internal IdentifierCollection NamespaceNames