Пример #1
0
 public bool matches(int value)
 {
     return(Divisors.Count(x => value % x == 0) == Divisors.Count);
 }