iTextSharp.text.pdf.codec.LZWStringTable.LZWStringTable C# (CSharp) Method

LZWStringTable() public method

public LZWStringTable ( ) : System
return System
        public LZWStringTable()
        {
            strChr_ = new byte[MAXSTR];
            strNxt_ = new short[MAXSTR];
            strLen_ = new int[MAXSTR];
            strHsh_ = new short[HASHSIZE];
        }