Initial commit

This commit is contained in:
Mark J Price 2022-07-22 10:29:58 +01:00
parent 0ff7fcc22e
commit 64bc796c7e
2 changed files with 4 additions and 4 deletions

View file

@ -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]);

View file

@ -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]);