C#, like most programming languages, has several built-in data types such as integer, string,
Debugging Buddy (Rubber Duck Programming)
Logic errors can be difficult to solve. Sometimes they are difficult to find, too. The code compiles and runs, but it …
Debugging Code: Poem Generator (C#)
Solving code problems can be a challenge, especially when the errors aren't obvious. With a bit of debugging practice, though, you can learn to quickly identify …
C# Random Fortune
Create a random fortune generator; a C# console application that selects a random element from a string array. The output is formatted to resemble the slip …
Basic UWP: Virtual Pet Setup
This walk through shows how to start a simple UWP project, and covers some of the fundamental elements you might need in an application. We'll use …
C# Arrays (Console Application)
Arrays are structures that organize related data into sets. This demo application uses the C# Array class members Length and Sort. Although this example is more fun …
ConsoleColor as Parameter (Console Application)
This short example shows how you can make a ConsoleColor object (myColor) and pass it as an argument to a method. The method …