protected CollectionBase(IdentifierCollection identifierCollection)
 {
     this.IdentifierCollection = identifierCollection;
 }
 public CaseSensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection)
 {
 }
 public override bool Contains(string item) => IdentifierCollection.CaseInsensitiveContains(item);