Exemplo n.º 1
0
 public void TestUInt32()
 {
     for (var n = 0; n < sizeof(UInt32) * 8; n++)
     {
         UInt32 i = (UInt32)1 << n;
         Assert.True(i.IsBitSet(n), n.ToString());
     }
 }