Clue Console App

Program.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 […]

Game Play Final

C# Programming Final Using the topics covered throughout the entire term (Arrays, Methods, Classes, Objects, InHeritance, etc….) Your task is to pick ONE of the two games below to create a console Game based off of the game play of the traditional board game. Pick your Game Using LucidChart (like program) – create a working […]

CarDemo Console App

Program.cs [code language=”csharp”] using System; using System.Collections.Generic; using static System.Console; /// <summary> /// # # # # # # # # /// # Mark Hesser # /// # Feb 14, 18 # /// # Car Demo # /// # # # # # # # # # # # # # # # # # […]

Car Demo

Create an application named CarDemo that declares at least two Car objects and demonstrates how they can be incremented using an overloaded ++ operator. Create a Car class that contains a model and a value for miles per gallon. Include two overloaded constructors. One accepts parameters for the model and miles per gallon; the other […]

ShirtDemo Console App

Program.cs [code language=”csharp”] using System; using System.Collections.Generic; using static System.Console; /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Feb 14, 18 # /// # Shirts Demo # /// # # # # # # # # # # # # # # # # […]

BaseballPlayer Console App

Program.cs [code language=”csharp”] using System; using System.Collections.Generic; using static System.Console; /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Feb 14, 18 # /// # Baseball Player # /// # # # # # # # # # # # # # # […]

Baseball and Shirt Solution Exercises

Baseball Players – 9 Baseball Players Create an application named BaseballPlayer that instantiates and displays a BaseballPlayer object. The BaseballPlayer class contains properties that hold a player’s name (a string), jersey number (an integer), runs scored (an integer), and position (a string). T-Shirt Demo – min of 5 different shirts Create an application named ShirtDemo […]

Property Tax Console App

[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Feb 10, 18 # /// # Property Tax # /// # # # # # # # # # # # # # # # # # # # […]