Jump to content

  •  

  • iBotModz CBox


    Photo

    C# or VB?


    • Please log in to reply
    13 replies to this topic

    #1 10mejia

    10mejia

      Private Grade 2

    • Members+

    • 59 posts
    • Joined: 05-May 09
    • Gender:Male

    Posted 21 June 2009 - 02:57 AM

    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!

    #2 iBotPeaches

    iBotPeaches

      General Grade 6

    • Owner

    • 6,570 posts
    • Joined: 29-July 07
    • Gender:Male
    • Location:Kansas

    Posted 21 June 2009 - 05:11 AM

    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.

    #3 Lockon

    Lockon

      "I never asked for this"

    • VIP

    • 1,896 posts
    • Joined: 17-June 08
    • Gender:Male
    • Location:N.Ireland

    Posted 21 June 2009 - 06:36 AM

    VB is easy to learn
    C# is harder to learn

    #4 Dark Slipstream

    Dark Slipstream

      Blue Shadowz Owner

    • Members+

    • 2,829 posts
    • Joined: 19-April 08
    • Gender:Male
    • Location:Canada, ON

    Posted 21 June 2009 - 10:03 AM

    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#.

    #5 yungbol

    yungbol

      Firmware Expert

    • Global Mods

    • 1,461 posts
    • Joined: 09-April 08
    • Gender:Male
    • Location:Philly

    Posted 21 June 2009 - 10:44 AM

    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.

    #6 10mejia

    10mejia

      Private Grade 2

    • Members+

    • 59 posts
    • Joined: 05-May 09
    • Gender:Male

    Posted 21 June 2009 - 02:04 PM

    Alright thanks, i will go try them out :D

    Edit-

    I'll try C# first sense i like to have a challenge :D

    Edited by 10mejia, 21 June 2009 - 02:22 PM.


    #7 Random1225

    Random1225

      Gunnery Sergeant Grade 2

    • VIP

    • 986 posts
    • Joined: 03-May 08
    • Gender:Male
    • Location:The Holy Empire of Britannia

    Posted 21 June 2009 - 02:22 PM

    Also you could just install both. I did and I just use whichever one I feel like using at the time.

    #8 10mejia

    10mejia

      Private Grade 2

    • Members+

    • 59 posts
    • Joined: 05-May 09
    • Gender:Male

    Posted 21 June 2009 - 02:25 PM

    I could do that, but then it would take longer for me to learn 1 or the other.

    #9 lostmodz26

    lostmodz26

      I am lostmodz26.

    • VIP

    • 1,153 posts
    • Joined: 12-March 09
    • Gender:Male
    • Location:Northern Louisiana

    Posted 21 June 2009 - 11:42 PM

    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.

    #10 T3A guy

    T3A guy

      :)

    • Members+

    • 1,191 posts
    • Joined: 09-May 08
    • Gender:Male

    Posted 22 June 2009 - 02:07 PM

    I would start with vb then learn C# after. They have the exact same syntax, but different words.

    #11 iBotPeaches

    iBotPeaches

      General Grade 6

    • Owner

    • 6,570 posts
    • Joined: 29-July 07
    • Gender:Male
    • Location:Kansas

    Posted 22 June 2009 - 02:14 PM

    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.

    #12 10mejia

    10mejia

      Private Grade 2

    • Members+

    • 59 posts
    • Joined: 05-May 09
    • Gender:Male

    Posted 22 June 2009 - 11:00 PM

    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

    #13 Lockon

    Lockon

      "I never asked for this"

    • VIP

    • 1,896 posts
    • Joined: 17-June 08
    • Gender:Male
    • Location:N.Ireland

    Posted 23 June 2009 - 03:56 AM

    go to your public libary

    #14 yungbol

    yungbol

      Firmware Expert

    • Global Mods

    • 1,461 posts
    • Joined: 09-April 08
    • Gender:Male
    • Location:Philly

    Posted 23 June 2009 - 12:46 PM

    Google.com is your best teacher.

    Here is a good guide on learning c# as well.