From 64bc796c7e7d6255019c513389f3576faee2d520 Mon Sep 17 00:00:00 2001 From: Mark J Price Date: Fri, 22 Jul 2022 10:29:58 +0100 Subject: [PATCH] Initial commit --- vs4win/Chapter06/PeopleApp/Program.cs | 4 ++-- vscode/Chapter06/PeopleApp/Program.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vs4win/Chapter06/PeopleApp/Program.cs b/vs4win/Chapter06/PeopleApp/Program.cs index 1dcfe6a..e7aa6bf 100644 --- a/vs4win/Chapter06/PeopleApp/Program.cs +++ b/vs4win/Chapter06/PeopleApp/Program.cs @@ -15,13 +15,13 @@ lookupObject.Add(key: 2, value: "Beta"); lookupObject.Add(key: 3, value: "Gamma"); lookupObject.Add(key: harry, value: "Delta"); -int key = 2; // lookup the value that has 2 as its key +int key = 2; // look up the value that has 2 as its key WriteLine(format: "Key {0} has value: {1}", arg0: key, arg1: lookupObject[key]); -// lookup the value that has harry as its key +// look up the value that has harry as its key WriteLine(format: "Key {0} has value: {1}", arg0: harry, arg1: lookupObject[harry]); diff --git a/vscode/Chapter06/PeopleApp/Program.cs b/vscode/Chapter06/PeopleApp/Program.cs index 1dcfe6a..e7aa6bf 100644 --- a/vscode/Chapter06/PeopleApp/Program.cs +++ b/vscode/Chapter06/PeopleApp/Program.cs @@ -15,13 +15,13 @@ lookupObject.Add(key: 2, value: "Beta"); lookupObject.Add(key: 3, value: "Gamma"); lookupObject.Add(key: harry, value: "Delta"); -int key = 2; // lookup the value that has 2 as its key +int key = 2; // look up the value that has 2 as its key WriteLine(format: "Key {0} has value: {1}", arg0: key, arg1: lookupObject[key]); -// lookup the value that has harry as its key +// look up the value that has harry as its key WriteLine(format: "Key {0} has value: {1}", arg0: harry, arg1: lookupObject[harry]);