Пример #1
0
 public static void set(this global::System.Collections.BitArray ba, int firstIndex, int lastIndex)
 {
     for (int i = firstIndex; i < lastIndex; i++)
     {
         ba.Set(i, true);
     }
 }
Пример #2
0
 public static void clear(this global::System.Collections.BitArray ba, int index)
 {
     ba.Set(index, false);
 }
Пример #3
0
 public static void set(this global::System.Collections.BitArray ba, int index)
 {
     ba.Set(index, true);
 }