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

WithLength() public method

Creates a copy of this bitstring with the supplied length
public WithLength ( byte length ) : BitString8
length byte The length of the new bitstring
return BitString8
        public BitString8 WithLength(byte length)
        {
            return new BitString8(length, _flags);
        }