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