コード例 #1
0
 public CaseSensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection)
 {
 }
コード例 #2
0
 public override bool Contains(string item) => IdentifierCollection.CaseInsensitiveContains(item);
コード例 #3
0
 protected CollectionBase(IdentifierCollection identifierCollection)
 {
     this.IdentifierCollection = identifierCollection;
 }
コード例 #4
0
 public override bool Contains(string item)
 {
     return(IdentifierCollection.CaseSensitiveContains(item));
 }