BACnet.Types.BitString8.BitString8 C# (CSharp) Method

BitString8() public method

Constructs a new bitstring8 instance
public BitString8 ( byte length, byte flags ) : System
length byte The length of the bitstring
flags byte The flag values
return System
        public BitString8(byte length, byte flags)
        {
            this._length = length;
            this._flags = flags;
        }