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