Compr.Uncompress Method
Uncompress data using zlib compression.
Syntax
[C#]
public static byte[] Uncompress(
byte[] data
)
[VB.NET]
Public Shared Function Uncompress ( _
data As Byte() _
) As Byte()
Parameters
- data
- Compressed data to be uncompressed.
Return Value
Uncompressed data, or an empty array on error.
Remarks
An empty array may also be returned if the original data was the empty array itself.
See Also
VB6/C equivalent: COMPR_Uncompress
[Contents] [Index]