Skip to content

Commit

Permalink
Update Program.Compress.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
markjprice authored Nov 24, 2022
1 parent f2ed17e commit 9d832c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/Chapter09/WorkingWithStreams/Program.Compress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static void Compress(string algorithm = "gzip")
// output all the contents of the compressed file
WriteLine("{0} contains {1:N0} bytes.",
filePath, new FileInfo(filePath).Length);

WriteLine("The compressed contents:");
WriteLine(File.ReadAllText(filePath));

Expand Down

0 comments on commit 9d832c7

Please sign in to comment.