BACnet.Types.BitString24.this C# (CSharp) Method

this() public method

Retrieves the value of the indexth bit
public this ( int index ) : bool
index int The index of the bit to retrieve
return bool
        public bool this[int index]
        {
            get
            {
                var mask = (uint)(0x80000000 >> index);
                return (_flags & mask) > 0;
            }
        }