10mejia Posted June 21, 2009 Report Posted June 21, 2009 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!
iBotPeaches Posted June 21, 2009 Report Posted June 21, 2009 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.
Dark Slipstream Posted June 21, 2009 Report Posted June 21, 2009 Everyone will say the same thing. VB is easier, C# is harder. C# has more Gaming/Optimization uses. VB is more business oriented. If you have the time for it, learn VB first, then learn C#.
yungbol Posted June 21, 2009 Report Posted June 21, 2009 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.
10mejia Posted June 21, 2009 Author Report Posted June 21, 2009 (edited) Alright thanks, i will go try them out Edit- I'll try C# first sense i like to have a challenge Edited June 21, 2009 by 10mejia
Random1225 Posted June 21, 2009 Report Posted June 21, 2009 Also you could just install both. I did and I just use whichever one I feel like using at the time.
10mejia Posted June 21, 2009 Author Report Posted June 21, 2009 I could do that, but then it would take longer for me to learn 1 or the other.
lostmodz26 Posted June 22, 2009 Report Posted June 22, 2009 Yeah, I'm not a really "good" programmer, but I started with VB and I'm starting to learn a little about C#. It seems a lot more complicated to me.
T3A guy Posted June 22, 2009 Report Posted June 22, 2009 I would start with vb then learn C# after. They have the exact same syntax, but different words.
iBotPeaches Posted June 22, 2009 Report Posted June 22, 2009 C# has { } to encase your statements, VB doesn't. C# adds a semi-colon to the end of lines (some), VB doesn't. C# uses more symbols less words, VB doesn't.
10mejia Posted June 23, 2009 Author Report Posted June 23, 2009 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 2
yungbol Posted June 23, 2009 Report Posted June 23, 2009 Google.com is your best teacher. Here is a good guide on learning c# as well. 1
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now