Esempio n. 1
0
 public bool Contains(DnsType dnsType)
 {
     return(TypesExist.BinarySearch(dnsType) >= 0);
 }
Esempio n. 2
0
 public DnsTypeBitmaps(IEnumerable <DnsType> typesExist)
 {
     TypesExist = typesExist.Distinct().ToList();
     TypesExist.Sort();
 }