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