4 instantiations of IdentifierCollection
Microsoft.CodeAnalysis (4)
MetadataReader\PEModule.cs (4)
845
return new
IdentifierCollection
(typeNames);
849
return new
IdentifierCollection
();
868
return new
IdentifierCollection
(namespaceNames);
872
return new
IdentifierCollection
();
12 references to IdentifierCollection
Microsoft.CodeAnalysis (12)
Collections\IdentifierCollection.Collection.cs (4)
17
protected readonly
IdentifierCollection
IdentifierCollection;
20
protected CollectionBase(
IdentifierCollection
identifierCollection)
98
public CaseSensitiveCollection(
IdentifierCollection
identifierCollection) : base(identifierCollection)
107
public CaseInsensitiveCollection(
IdentifierCollection
identifierCollection) : base(identifierCollection)
MetadataReader\PEModule.cs (8)
67
private readonly Lazy<
IdentifierCollection
> _lazyTypeNameCollection;
68
private readonly Lazy<
IdentifierCollection
> _lazyNamespaceNameCollection;
156
_lazyTypeNameCollection = new Lazy<
IdentifierCollection
>(ComputeTypeNameCollection);
157
_lazyNamespaceNameCollection = new Lazy<
IdentifierCollection
>(ComputeNamespaceNameCollection);
834
private
IdentifierCollection
ComputeTypeNameCollection()
853
private
IdentifierCollection
ComputeNamespaceNameCollection()
3902
internal
IdentifierCollection
TypeNames
3910
internal
IdentifierCollection
NamespaceNames