Skip to content

commenting multiple lines

Commenting multiple lines is easy with keyboard shortcuts. Multiple lines can be commented and uncommented by selecting them and clicking the comment icon, or by using the keyboard shortcut [CTRL + E, C] to comment, and [CTRL + E, U] to uncomment. (Microsoft Visual Studio Ultimate 2012 Screenshots)

hello world

A simple application in C#. Hello World is a traditional first application for a programmer learning a new language. It is a simple program that prints out a message to a display device and is a good way to learn the basic syntax of a language. A simple Hello World example: using System; namespace HelloWorld ...continue reading "C# Hello World"

debugging

Critical thinking and problem solving. Debugging and troubleshooting are a normal part of learning to code; it is common to encounter errors. Understanding error types, debugging tools, and different approaches to problem solving can make the process of detecting and fixing bugs less overwhelming. Error Types There are several ways to classify debugging issues. Two ...continue reading "Problem Solving in Programming"