Exemplo n.º 1
0
        private void UpdateLiteralBuffer()
        {
            int length = OutputSize;

            if (length >= 1)
            {
                if (length >= 2)
                {
                    LiteralBuffer.Push(outputState.GetByte(2));
                }

                LiteralBuffer.Push(outputState.GetByte(1));
            }
        }
Exemplo n.º 2
0
 public byte GetByte(int distance)
 {
     return(wrapped.GetByte(distance));
 }