Skip to content

screenshot

External data: using text files to store data. We will create a console application that will let us display text from, and save data to, an external data file. After we walk through how to read in data and write it back out, there is an example of how you could build a simple menu ...continue reading "Reading and Writing External Data (C# Console Application)"

screenshot

Iterating our simple C# Madlib code This is part two in a series to create iterative versions of a Madlib in C#. If you haven't read through , start there! Next Iteration A good practice is to keep the amount of code in our Main() function to a minimum. The first step we'll do in ...continue reading "Simple C# Madlib (Part Two)"

Example of UML for a trivia game

A simple introduction to UML (Unified Modeling Language) Unified Modeling Language UML (Unified Modeling Language) is an industry-standard modeling language used to describe the structure and behavior of software systems. 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 ...continue reading "UML Introduction"