Can I uncompress a bytestream that was compressed using the .NET GZipStream using the zlib library in C++?
+4
A:
You should be able to - use gzopen
etc.
(The .NET GZipStream
certainly should be writing "standard" gzip data, and zlib supports gzip, so...)
Jon Skeet
2009-08-14 19:46:21