Hi, Does someone know about a good easy to use and implement library
which is very good at compressing text files?
www.hd720i.com/..../16-1.aspx Written by Rajoo Sharma | Sunday, 21 June 2009 20:36 UTC
Re: Compress and decompress with c#?
SharpZipLib at
www.icsharpcode.net/../.Written by Family Tree Mike | Sunday, 21 June 2009 20:46 UTC
Re: Compress and decompress with c#?
www.chilkatsoft.com/zip-dotnet.aspWritten by Mark Rae [MVP] | Sunday, 21 June 2009 21:12 UTC
Re: Compress and decompress with c#?
Why not use the library that comes with the .Net Framework (2.0 and
above)?
You can use the DeflateStream or GZipStream classes to compress and
decompress information. Noting stops you from connecting either with a
FileStream to compress a file. Both Deflate and GZip will do a fine job when
compressing text. And they are as simple to implement as you can get when
programming under .Net, since you don't need to deploy any library, just the
Framework (which you would need anyway to run your program, even if you were
using a different compression library).
Written by Alberto Poblacion | Sunday, 21 June 2009 21:25 UTC
RE: Compress and decompress with c#?
Try this link
www.codeguru.com/../c13375Written by Ademola | Monday, 22 June 2009 11:13 UTC
Re: Compress and decompress with c#?
Actually I didnt know about it. Thanks!
Written by Rajoo Sharma | Tuesday, 23 June 2009 16:32 UTC