Exemplo n.º 1
0
 public void DeleteLoadOnMask(int mask)
 {
     for (int i = 0; i < ListLoadLab.Count(); i++)
     {
         if ((((1 << i) & mask) != 0) && ListLoadLab[i].Bit)
         {
             ListLoadLab[i].Bit = false;
         }
     }
     ListLoadLab.RemoveAll(x => !x.Bit);
 }