BKSystem.IO.BitStream.UpdateLengthForWrite C# (CSharp) Метод

UpdateLengthForWrite() приватный Метод

Updates the length of the internal buffer after wrinting to the current stream by the specified number of bits.
.
private UpdateLengthForWrite ( uint bits ) : void
bits uint /// An value defining the specified /// number of bits. ///
Результат void
        private void UpdateLengthForWrite(uint bits)
        {
            // Increment _uiBitBuffer_Length
            _uiBitBuffer_Length += bits;
        }