[RESOLVED] [2005] .NET Equivalent to GZIPInputStream
I am trying to decompress a byte array so I can read the image that is stored withing the bytes. I know in java you can use GZIPInputStream for decompressing a stream, but is their anything equivalent to this class in .NET?
Any help would be greatful.
Thanks.
Re: [2005] .NET Equivalent to GZIPInputStream
System.IO.Compression.GZipStream, assuming that the stream you're reading was compressed using GZIP in the first place. Easy miss. ;)
Re: [2005] .NET Equivalent to GZIPInputStream
Quote:
Originally Posted by jmcilhinney
System.IO.Compression.GZipStream, assuming that the stream you're reading was compressed using GZIP in the first place. Easy miss. ;)
Wow, silly miss thanks!.