-
-
Notifications
You must be signed in to change notification settings - Fork 1
BZip2.Decompressor
Andrew Lambert edited this page Nov 27, 2022
·
2 revisions
BZip2.Decompressor
Protected Class Decompressor
This class performs decompression of a BZip2
stream. If you don't need low-level control over the decompression process then the easier to use BZ2Stream class should be preferred.
This example decompresses a string:
Dim bzstring As String ' assume a bzipped string
Dim inf As New BZip2.Decompressor()
Dim uncompressed As String = inf.Decompress(bzstring)
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2018-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.