Archive

Posts Tagged ‘Visual Basic.Net’

An Introduction To Visual Basic.Net

August 11th, 2009 Rslegion No comments

Visual Basic, in my opinion is an extremely easy programming language to learn. It where i first started many years ago. One of the the reasons that visual basic is easy to learn on a beginner level is because most of its commands are in the English language.

For Example in Actionscript 3, you’ll see code like this:

if(someCode == true)
{
someMoreCode = false
}

Whereas in Visual Basic.Net, the same code would look more like this:

If someCode = true Then someMoreCode = false

As you can see, Visual basic code looks much more simple to the beginner than AS3. Even though both example do exactly the same thing.

This is the reason why i recommend learning Visual Basic.Net as you’re first programming language.

Check back regularly for more Visual Basic.Net tutorials.