1
Answer

Better code

Ask a question
mal suhash

mal suhash

15y
2.4k
1

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)