From 23e4b721500b9abe746219ec3a12b6f48b01faea Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 8 Apr 2023 10:10:30 -0700 Subject: [PATCH] 4.28 --- src/Chapter04/Listing04.28.OutOfScope.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Chapter04/Listing04.28.OutOfScope.cs b/src/Chapter04/Listing04.28.OutOfScope.cs index f073f0a85..cae91131c 100644 --- a/src/Chapter04/Listing04.28.OutOfScope.cs +++ b/src/Chapter04/Listing04.28.OutOfScope.cs @@ -27,14 +27,12 @@ public static void Main(string[] args) { // ... } - #endregion INCLUDE - #if COMPILE_ERRR - #region INCLUDE + #if COMPILE_ERRR //EXCLUDE #region HIGHLIGHT // ERROR: message is not in scope: Console.WriteLine(message); #endregion HIGHLIGHT + #endif // COMPILE_ERRR //EXCLUDE #endregion INCLUDE - #endif // COMPILE_ERRR } }