Ejemplo n.º 1
0
        //uncompress

        /// <summary>
        /// 解压缩(0->length)无视position
        /// </summary>
        public void unCompress()
        {
            byte[] b = BytesUtils.uncompressByteArr(_buf, _off, _length);

            _buf      = b;
            _off      = 0;
            _position = 0;
            _length   = b.Length;
        }