예제 #1
0
        public void SetGet()
        {
            m_Mask.Set(63, true);
            m_Mask.Set(64, true);
            m_Mask.Set(65, true);

            Assert.IsFalse(m_Mask.Get(62));
            Assert.IsTrue(m_Mask.Get(63));
            Assert.IsTrue(m_Mask.Get(64));
            Assert.IsTrue(m_Mask.Get(65));
        }