Michael Letterle: > Alright, I started doing this tonight (finally) GZip was pretty > straight forward, but Inflate may be a problem, The > System::IO::Compression.DeflateStream is RFC 1951 compliant /not/ > 1950.. Meaning it only covers Deflate, not ZLib in general. See here: > https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx? > F > eedbackID=97064&wa=wsignin1.0 > > I'll research this more tomorrow, I'd hate to have to have an external > dependency like Zlib.NET
Yeah, DeflateStream only implements the basic deflate algorithm, with no configuration options. Worse, it doesn't have particularly good compression ratio. Definitely worth investigating a port of a more fully featured library... - John _______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core
