Jump to content

cbox


Recommended Posts

Posted
Hello, I've recently been wanting to learn and create programs. While researching for info on how to do so, i stumbled across 2 types of programs that help C# and VB. In other words, which one is easy/better for programming and coding? Please and Thank You for the support!
Posted

VB is more English words instead of symbols, so you'll get to do like

 

For X as Integer = 0 to 10 Step 1

 

That same code in C# is

 

for (int x = 0; x <= 10; x++)

 

I use C# now after starting with VB, I prefer C# for many reasons now.

Posted

I recommend starting with C# as if you want to advance onto a harder language such as c++ later is will be a lot easier.

 

Neither is easier then the other, it is all about preference. Try both for a little bit and see what you like better, that is what I did and I came out liking c# a lot more then vb.

Posted
I've decided to go with C#, it's a lot of fun but i think i need some kind of a manual LOL, i have very little on how to do anything at all, would anyone like to be a teacher? lol
  • Like 2

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...