Skip to content

Numeric Guessing Game

Type conversion, random numbers, and conditional statements. We'll create a game where the player will try to guess a random number. Fundamental programming concepts will be covered as we build the C# console application. Numeric Guessing Game Framework The framework for our game will have two classes: Program and Game. A method (Play) in the ...continue reading "Numeric Guessing Game: C# Console Application"

inheritance example

A simple introduction to UML (Unified Modeling Language) Unified Modeling Language UML is an industry standard way of modeling objects. It can be used to better understand objects and object-oriented programming, and to make it easier to conceptualize programming objects - the UML diagrams act like a template that can be used to write code from. ...continue reading "UML Introduction"