Submitted by Chris Dugdale on Mon, 03/26/2012 - 22:01
There are some really cool tools available to help you test and improve your programs in the.Net Framework.
One of the most simple is the Stopwatch class, situated in the System.Diagnostics namespace. As the name suggests it allows you to create a stopwatch object, and use it to time processes, operations or any other part of your program.
Submitted by Chris Dugdale on Mon, 02/20/2012 - 18:42
This little code snippet comes directly from a 'code challenge' I completed on Programr.com and I found it really interesting so decided to put it up here.
The challenge was to create a binary triangle of a size determined by the user. So the program collected user input for the number of rows and then printed a binary triangle to the console output in the format given in the challenge spec below. The method shown here does not include gathering the user input.
Recent comments