From 9d832c7498fec176f22d215bf09a4f9030a9081b Mon Sep 17 00:00:00 2001 From: "Mark J. Price" Date: Thu, 24 Nov 2022 09:39:48 +0000 Subject: [PATCH] Update Program.Compress.cs --- vscode/Chapter09/WorkingWithStreams/Program.Compress.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs b/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs index e8d81ce..d29bf0f 100644 --- a/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs +++ b/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs @@ -39,7 +39,7 @@ partial class Program // 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));