BACnet.Types.BitString24.WithLength C# (CSharp) Méthode

WithLength() public méthode

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