Soldato
- Joined
- 17 Nov 2005
- Posts
- 3,120
- Location
- Chippenham, UK
Step 1. Download and install Visual Studio.
Then realise it's a lot to take in with lots and lots of buttons.
Step 2. Learn about 'Console Apps'. This is a quick way to follow some examples. Eg. 'enter your name', 'enter your age'. In 20 years time Andrew, you'll be 57'.
Then try and program something to add two numbers together.
Then try and program a calculator based application.
Simple steps and learn to debug.
Then realise it's a lot to take in with lots and lots of buttons.
Step 2. Learn about 'Console Apps'. This is a quick way to follow some examples. Eg. 'enter your name', 'enter your age'. In 20 years time Andrew, you'll be 57'.
Then try and program something to add two numbers together.
Then try and program a calculator based application.
Simple steps and learn to debug.
. The rating system some of the forums/sites have does help determine what the better solution probably is. I can remember someone arguing my method of using "Hello " + firstName was not as good as string.Concat("Hello ", firstName) to achieve the same thing but actually when compiled it's exactly the same instruction(s) apparently. As I've done a lot of perl scripting, using the + is just so easy to me rather than using the string.concat method.