Esempio n. 1
0
 public bool IsSafe()
 {
     if (!Chips.Any())
     {
         return(true);
     }
     if (!Generators.Any())
     {
         return(true);
     }
     return(Chips.All(c => Generators.Contains(c)));
 }