GZip.Decompress(Byte[], Int32) 方法

定义

解压缩使用 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[]

解压缩的字节数组。

适用于