ByteArrayExtensionsDecompress Method
Decompresses the provided
bytes that was compressed by
Compress method.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static byte[] Decompress(
this byte[] bytes
)
<ExtensionAttribute>
Public Shared Function Decompress (
bytes As Byte()
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ Decompress(
array<unsigned char>^ bytes
)
[<ExtensionAttribute>]
static member Decompress :
bytes : byte[] -> byte[]
- bytes Byte
- The bytes to decompress.
ByteDecompressed data. It is not guaranteed that compressed data is shorter than original one.In Visual Basic and C#, you can call this method as an instance method on any object of type
Byte. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).