Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help me understand some of the pros (and some of the cons if they are constructive) of using VB.NET over say, C#?

share|improve this question
Now, I would like to point out that this was the proper way to handle a post like this, not closing it. For those mods who closed it instead, shame on you. – GEOCHET Oct 1 '08 at 16:01
This question keeps getting asked (I've asked it myself). Is this a problem with the search stumbling on the keywords VB and C#? – jammus Oct 1 '08 at 16:04
This is a reasonable question, I don't see why certain zealots feel like the need to down-vote something like this – Hugoware Oct 1 '08 at 16:27
@jammus Far too many questions are tagged both [c#] and [vb.net], but a Google search google.com/… finds them really well. – Josh Lee Dec 4 '09 at 11:32

closed as not constructive by Will Jan 31 '12 at 14:53

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

Having worked in both languages I can tell you this:

VB.NET:

  • The lack of anonymous delegates is annoying at best.
  • The event handling syntax is kick arse.
  • The lack of unsafe has been somewhat of a hitch
  • Attribute syntax is annoying
  • Using the Excel Interop is painless
  • Casting tends to be tedious

C#:

  • The event syntax for me is annoying.
  • Anonymous delegates are a life saver.
  • Attribute syntax cleaner then VB
  • The LINQ syntax is cleaner
  • Better addins to VS available.
    • R#: more addins available
    • R#: more features available
  • ==
  • The Excel Interop is PAINFUL
  • Casting is easier

Lastly, even in the my language is better then your language argument, there are zealots on both sides. I find that for UI, I program better in VB then I do in C# most of the time. If doing back end, or complex UI, or unit testing VB tends to slow me down where if I do it in C#, it takes less time.

share|improve this answer
Thanks Rob for the spelling edit! – MagicKat Oct 1 '08 at 17:01
1  
Event syntax in C# is a total WTF! to me :) – dr. evil Dec 15 '08 at 9:43
Attribute syntax is the same. What Differences? – AMissico Apr 2 '10 at 18:28
I find that C# tends to slow me down. – AMissico Apr 2 '10 at 18:30
I can't believe u said Linq is cleaner in c#? opposite is true. Think about all the Linq keyword that exist in vb that don't exist in c#. Much cleaner and more productive and expressions are more readable as a result. I won't even bother mentioning XML literals, or Linq to XML. You get my point. – Erx_VB.NExT.Coder Jan 31 '12 at 4:52

Here are a couple of web posts that are pretty comprehensive, and come at VB.Net from a C# perspective:

Even as a VB.Net developer (as I am) there's some very interesting stuff in there!

share|improve this answer
  • VB.Net support static members inside functions, C# does not (I ran into this just today)
  • I don't know the name of the feature, but when you import a namespace in VB.Net the namespace is "in scope". It can really come in handy. For example, if I'm going to use exactly one regex in an app in C# I'd either have to add a using statement for System.Text.RegularExpressions that's only going to be used by one class instance or type out System.Text.RegularExpressions.RegEX in the variable declaration (and I might even need to do it twice for one declaration). Now let's say I also have a StringBuilder or two and have already imported System.Text. In C#, nothing changes. In VB.Net I have the additional option of just saying RegularExpressions.RegEx in the declaration. Also, you get a very nice intellisense prompt after entering the period in VB.

I think VB.Net takes a lot of flak from C/C++/C# developers who (rightly) remember the travesty that was VB6/VBScript, and the effect is amplifed via group-think. We need to put it to rest: VB.Net is not VB6.

I wonder how many C# programmers spend any significant amount of time with VB.Net code? I mean, more than say one week of solid production work? I'm sure there are a few who came in initially from the Classic ASP world, but all in all not that many. I came originally from a C++ backgound, I have spent significant time with both VB.Net and C#, and I can tell you that after a while the VB.Net syntax really has a lot to recommend it over the curly-braced languages.

You probably also want to see this question:
http://stackoverflow.com/questions/102084/hidden-features-of-vbnet

share|improve this answer
Agreed totally, not to mention the countless things you can do with vb that you just can't with c# that reduce pain points, whereas there are less things that you can't do in vb but can in c#. once again, I know anything is possible with both languages, mainly talking about productivity, clarity in expression, readability and just the reduced annoyance factor and ease of doing things in more flexible ways in vb plus joy and pleasure of programming in vb. Don't get me wrong, I love c# as well but I'm totally in love with vb.net. – Erx_VB.NExT.Coder Jan 31 '12 at 5:00

COM interop is much better in VB.NET (compared to C#), partly because VB.NET supports optional named parameters.

http://www.publicvoid.dk/NamedParametersInVBNET.aspx

The most obvious place you run into this is in Office automation.

share|improve this answer
Question requested information about the comparison of the two languages, not suggestions for different languages. Suggesting 'superior' tools is fine...but you should still answer the question. – Jeff Oct 1 '08 at 15:51
COM interop is much better in VB.NET -- not suggesting another language – Lou Franco Oct 1 '08 at 15:59
read the link, this is a vb.net only feature and thus a pro – Steven A. Lowe Oct 1 '08 at 15:59
edited to clarify – Lou Franco Oct 1 '08 at 16:00
Ok, now that it's clarified, I'm understanding the response much better. – Jeff Oct 1 '08 at 16:26
show 1 more comment

Pros:

  • there are a lot of VB.NET developers on the planet
  • VB.NET developers tend to charge less than C# developers

Cons:

  • VB.NET syntax is verbose
  • VB.NET cannot do unsafe (i.e. pointer-based) operations, which are rarely necessary but do occur in special circumstances

since they both rely on the .NET framework, they're theoretically equivalent; otherwise, it's really a matter of comfort and style after that

in general, people from a VB background tend to prefer VB.NET, people from a C++/Java background tend to prefer C#

personally, i find VB.NET syntax to be overly complicated, and much prefer C#

BTW, it doesn't hurt to be fluent in both

share|improve this answer
1  
Those are pros if you are a development manager, cons if you are the developer (lots of competition, less pay.) As this is a developer forum I think that that is the perspective. – Scott Alan Miller Oct 1 '08 at 16:24
2  
since i prefer C#, i like to encourage the competition to learn vb.net ;-) [just kidding!] – Steven A. Lowe Oct 1 '08 at 18:54
People using vb charge less because they are able to do more within a fixed amount of time, therefore billable hours are reduced, but not by much. Maybe 10%-15%. – Erx_VB.NExT.Coder Jan 31 '12 at 5:06

There is a pretty comprehensive Codeproject article covering the technical differences.

share|improve this answer

Syntax can be a bit more concise, but harder to follow.

Really, for most of us, there's not a whole lot of difference...

share|improve this answer

There's no real disadvantage or advantage in either, though there's a few minor feature differences.

They both compile down to the CLR, though, and can easily be translated between.

The only major difference is an advantage for C#: C# developers make more money.

Evidence (and further discussion) can be found here.

share|improve this answer

This is very similar to a question I asked and got negative votes for...

As far as I can tell, more people use VB.NET Its closer to VB6 syntax wise Some people look down on VB developers but I like it as much as C#!

share|improve this answer

I haven't done much VB.NET programming but I saw a difference in how to handle LINQ to XML in VB.NET, where you can use an interesting syntax to refer to XML elements. An example is shown here: LINQ to XML in VB.NET and Using the Right Language for the Job

Secondly I have heard that multi-line lambdas are not possible in VB.NET in the current version. Further pointers here: No multi-line lambdas in VB 2008

share|improve this answer