iTextSharp.text.pdf.LZWDecoder.AddStringToTable C# (CSharp) Метод

AddStringToTable() публичный Метод

public AddStringToTable ( byte str ) : void
str byte
Результат void
        public void AddStringToTable(byte[] str) {
        
            // Add this new string to the table
            stringTable[tableIndex++] = str;
        
            if (tableIndex == 511) {
                bitsToGet = 10;
            } else if (tableIndex == 1023) {
                bitsToGet = 11;
            } else if (tableIndex == 2047) {
                bitsToGet = 12;
            }
        }
    

Same methods

LZWDecoder::AddStringToTable ( byte oldstring, byte newstring ) : void