Category: C# Programming
Library Fines Console App
[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18. 18 # /// # Library Fines # /// # # # # # # # # # # # # # # # # # […]
Fortune Teller Console App
[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18, 18 # /// # Fortune Teller # /// # # # # # # # # # # # # # # # # # […]
Painting Rooms Console App
[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18, 18 # /// # Painting Estimates # /// # # # # # # # # # # # # # # # […]
Using Methods – pgs266-285
Ref Parameters vs. Out Parameters in C#
Though both ref and out parameters are used to pass arguments through a method, they aren’t used in exactly the same way.
Using Methods – Video
Hangman Console App
[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Media; using static System.Console; /// <summary> /// # # # # # # # # # # # # # /// # Mark Hesser # /// # Jan 9, 2018 # /// # Hangman Console App # /// # # # # […]
Hangman
Create a game similar to Hangman in which a player guesses letters to try to replicate a hidden word. Be sure to use the following criteria. Store at least eight words in an array [each word should be 5 or more characters] Randomly select one to be the hidden word. Initially, display the hidden word […]