GZip.Decompress(Byte[], Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
解压缩使用 GZip 算法压缩的字节数组。
static std::Array <byte> Decompress(std::Array <byte> const & data, int bufferSize = 4096);
public static byte[] Decompress (byte[] data, int bufferSize = 4096);
static member Decompress : byte[] * int -> byte[]
Public Shared Function Decompress (data As Byte(), Optional bufferSize As Integer = 4096) As Byte()
参数
- data
- Byte[]
要解压缩的数组。
- bufferSize
- Int32
用于解压缩数据的中间缓冲区的大小。
返回
- Byte[]
解压缩的字节数组。