data.gz C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi i have a application that unzip zips files.
it works fine with files with a .zip extention.
how can i use C# to unzip a file with a .gz extention?
i am useing a J sharp dll to unzip the files.
 
With Dotnet 2.0 you have System.IO.Compression.
It includes GZipStream class

Nicolas Guinet
 
Back
Top