ICSharpCode.SharpZipLib.Zip.Compression.PendingBuffer.WriteByte C# (CSharp) Method

WriteByte() public method

Write a byte to buffer
public WriteByte ( int value ) : void
value int /// The value to write ///
return void
        public void WriteByte(int value)
        {
            #if DebugDeflation
            if (DeflaterConstants.DEBUGGING && (start != 0) )
            {
                throw new SharpZipBaseException("Debug check: start != 0");
            }
            #endif
            buffer_[end++] = unchecked((byte)value);
        }