Press "Enter" to skip to content

Category: C# RPG Tutorial

Introduction to C# debugging

Recently, someone added new features to the SuperAdventure game from my Learn C# by Building a Simple RPG lessons. The change wasn’t working the way he expected, so I made a video to show how to track down problems with programs in Visual Studio.

There are two features of Visual Studio that will really help you – the debugger and the ability to find every place where a variable/class/property is used.

This video shows you how I used both of those features to find, and fix, the program. I use these features of Visual Studio almost every day – especially when making modifications to existing programs. They’ll help you when you encounter problems in your programs (like all programmers do).

Leave a Comment