I'm looking for a package to use in my project to compress some xml files. I use WinRAR usually to compress files, and I think you can do this using the 7zip project and this can be included in a .Net project.
This is a similar question here:
http://stackoverflow.com/questions/153678/7-zip-7za-dll-net-wrapper
and the CodeProject example is here:
http://www.codeproject.com/KB/DLL/cs_interface_7zip.aspx
I particularly want something simple to use with a good compression ratio. The example provided only extracts files and I don't particularly have the time to implement and test the compression.
(GZipStream isn't good enough, it compresses my 10Mb file to 9Mb, WinRAR compresses it to 0.5Mb)
So, I'm after a library/package (don't care if it costs) which I can include in my project which allows me to easily Compress/Decompress files that has a good compression ratio and is easy to include and use.