Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 325923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:15:42+00:00 2026-05-12T09:15:42+00:00

I’ve been developing solely for the web for more than 6/7 years now, and

  • 0

I’ve been developing solely for the web for more than 6/7 years now, and before that I developed for about a year on Visual Basic 6 (I was pretty comfortable with it at the time) and for one or two months on C# (I forgot most of what I had learn though).

The thing is I’ve some ideas for some small desktop applications, I thought of developing in Python but none of the available GUI frameworks give me the ease of use I had back when I developed VB, so I’ll start developing on Visual Studio again.

My current knowledge of .NET is very limited, what would be the fastest way to get me back on track? What language should I choose between C# and VB? Where can I find reference material and tutorials or books on it?

Thanks in Advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:15:43+00:00Added an answer on May 12, 2026 at 9:15 am

    Not to get involved in language holy wars, but I’ve worked with five developers who came from VB6 to .Net, plus myself. That’s not a lot, but what I saw held true for all of us.

    Both languages are VERY good and I personally have no preference. I feel equally comfortable in both, and I really don’t think either is superior to the other.

    BUT just based on what I’ve seen, when moving to .Net, you’re better off starting with C# for one reason only. .Net development is more about learning and using the class library, not language semantics. VB6 hides some of this by putting shortcusts into the language spec.

    When you’re learning a language that is not similar to what you’ve already done, you’re more likely to look for the “right” way to do things.

    Microsoft did a lot to make VB.Net easy for VB6 developers to pick up on, so you can easily code on VB.Net very similarly to what you did in VB6. This means that it’s extremely easy to rely on the “shortcuts” and bring bad habits into your .Net development. So you see people who don’t truly “get” things like the differences in ADO.Net and their programs have bad performance and design issues because of this.

    Added several hours later based on comments

    I just want to clarify that I am not stating that VB is inferior to C#. As pointed out, both compile down to the same MSIL, and both languages are good. What I meant by “VB6’ers bringing in bad habits” can be clarified with an example:

    Two of the five I worked with did the same exact thing in code. They needed to get records from a database and loop through them in order to perform some maniuplation onthe data. The normal thing to do would be to either use a DataReader or DataAdatpter with a DataTable and loop through that. However, both of them instead created some array variables and looped through the DataReader results and assigned them to the arrays of arrays, and then looped through the arrays to do their calculations, meaning that they not only added unnecessary computing cycles, they also took items out of a collection that could be accesed with things like

    Dim FullName AS String = CurrentRow("FirstName").ToString()  + " " + CurrentRow("LastName").ToString()
    

    to (assuming that ar is the array variable and i is the indexer)

     Dim strFullName AS String = ar(i)(3).ToString()  + " " + ar(i)(4).ToString()
    

    Their method worked, but added extra cycles, and made the code harder to understand. I asked each of them why they did it this way. One of them had wanted to be able to use the data after the connection was closed so they didn’t accidentally update something. This is something you would need to worry about with a RecordSet, but not with a DataReader or a DataAdapter. This was clearly someone not grasping the difference between the VB6 way of doing things and ADO.Net. The other one just felt more comfortable with arrays because she was familiar with them.

    So my point had nothing to do with one language being “better” than the other. That would be arrogance and it would also be uninformed. Functionally, there is not much you can do in one that you can’t do in the other. And I LIKE some of the VB.Net “shortcuts” I mentioned earlier on. (VbNewline vs System.Environment.NewLine and the whole My namespace, InputBoxes, etc).

    My point was that when learning something completely unfamiliar, you’re less likely to get thrown by your own preconceptions. We saw things like this go away when we switched to a C# shop from a VB.Net shop. It had NOTHING to do with the language, and EVERYTHING to do with the developers being forced to learn properly instead of taking shortcuts.

    So, I still stick by my original advice for this reason, but by all means, if you like VB, go with it. And don’t worry about anyone “looking down” on you for using it. All of that “my language is better than your language” stuff is nonsense. Some languages have advantages over others, but in the .Net world, in the VB vs. C# debate, both languages are actually so close that there’s not much of a difference. The debate as pointless (and grown up) as the “my daddy can beat up your daddy” argument.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 172k
  • Answers 172k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Pete, you wouldn't need recursion in this case, but merely… May 12, 2026 at 2:32 pm
  • Editorial Team
    Editorial Team added an answer SELECT u.username, IF ((SELECT COUNT(*) FROM follow f WHERE f.follow_user_id… May 12, 2026 at 2:32 pm
  • Editorial Team
    Editorial Team added an answer I asked a similar question a while ago. My conclusion… May 12, 2026 at 2:32 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS
I am currently running into a problem where an element is coming back from

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.