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

WithLength() public méthode

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