mal suhash

mal suhash

  • NA
  • 1
  • 0

Better code

Dec 6 2008 6:57 AM

Hi there,

Please check the following code.

Is there a better or elegant way of writing the below code?

Thanks, M.

FileStream fs = File.OpenRead("c:\\aaa.zip");

GZipStream g = new GZipStream(fs, CompressionMode.Decompress);

StringBuilder sb = new StringBuilder();

int b = fs.ReadByte();

while (b != -1)

{

sb.Append((char)b);

b = fs.ReadByte();

}

Console.WriteLine(sb.ToString());


Answers (1)