SevenZip.Compression.LZMA.Decoder.SetLiteralProperties C# (CSharp) Method

SetLiteralProperties() private method

private SetLiteralProperties ( int lp, int lc ) : void
lp int
lc int
return void
        void SetLiteralProperties(int lp, int lc)
        {
            if (lp > 8)
                throw new InvalidParamException();
            if (lc > 8)
                throw new InvalidParamException();
            m_LiteralDecoder.Create(lp, lc);
        }