From 1692594d36dc2ebb130a19813a7b0a328887970b Mon Sep 17 00:00:00 2001 From: Mark J Price Date: Thu, 24 Nov 2022 09:04:20 +0000 Subject: [PATCH] Removed the unneeded $ --- vs4win/Chapter09/WorkingWithStreams/Program.Compress.cs | 2 +- vscode/Chapter09/WorkingWithStreams/Program.Compress.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vs4win/Chapter09/WorkingWithStreams/Program.Compress.cs b/vs4win/Chapter09/WorkingWithStreams/Program.Compress.cs index cbd9c19..e8d81ce 100644 --- a/vs4win/Chapter09/WorkingWithStreams/Program.Compress.cs +++ b/vs4win/Chapter09/WorkingWithStreams/Program.Compress.cs @@ -40,7 +40,7 @@ partial class Program WriteLine("{0} contains {1:N0} bytes.", filePath, new FileInfo(filePath).Length); - WriteLine($"The compressed contents:"); + WriteLine("The compressed contents:"); WriteLine(File.ReadAllText(filePath)); // read a compressed file diff --git a/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs b/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs index cbd9c19..e8d81ce 100644 --- a/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs +++ b/vscode/Chapter09/WorkingWithStreams/Program.Compress.cs @@ -40,7 +40,7 @@ partial class Program WriteLine("{0} contains {1:N0} bytes.", filePath, new FileInfo(filePath).Length); - WriteLine($"The compressed contents:"); + WriteLine("The compressed contents:"); WriteLine(File.ReadAllText(filePath)); // read a compressed file