This is a C# console app that allows the user to play a word-guessing game similar to Hangman. The user interface allows the user to add new words to the bank of "mystery words" from which a random word will be picked for them to guess in the game. The user can view all the words in the word bank and also remove words from the bank.
Clone this repository to your local machine.
$ git clone https://github.com/cf-coursework/Lab03-Word-Guess-Game.git
Select File
-> Open
-> Project/Solution
Next navigate to the location where you cloned the repository.
Double-click on the word-guess-game
directory.
Then select and open Lab03-Word-Guess-Game.sln
2019-03-22
: Built out initial CRUD methods and first few tests
2019-03-23
: Added main gameplay logic
2019-03-24
: Built out UI and added last couple tests
- For the process of deleting a given word from my word bank file, I got the idea to create and then delete a temp file from Stack Overflow.