Using a ‘for’ statement in C#

Below is an example of a for statement in C# – a for statement is a form of loop which can be used to make a normal loop look neater and it is very helpful:         {             for (double amount = 10; amount <= 100; amount += 10)             {                 if (amount <= […]

A Web 2.0. Comparison

Over the last week I have been using both WordPress and Google Docs to evaluate both of them as a form of web 2.0. technology. Below are my findings from that evaluation: WordPress is a powerful open source content management system – which most people use as software to run blogs – such as myself. […]

MCM Expo 2010

This weekend I had the honour of attending the MCM Expo in London – and it was bloomin’ brilliant. I’ve never been to an expo before in my life so it was a daunting experience, but I had plenty of good friends coming along so that calmed my nerves somewhat. I was also told cosplaying […]

Using the ‘If’ statement in C#

If statements allow a programmer to change the flow of their code to allow for more interesting and complicated programs by providing different statements for the program to test values against. When using if statements you should be familiar with the basic relational operators… you’ll know most of these from primary school: >     greater than              […]