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#?
|
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.
|
Having worked in both languages I can tell you this: VB.NET:
C#:
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. |
|||||||||||||
|
|
|
|||
|
|
|
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! |
|||
|
|
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: |
||||
|
|
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. |
|||||||||||
|
|
Pros:
Cons:
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 |
|||||||||||
|
|
There is a pretty comprehensive Codeproject article covering the technical differences. |
|||
|
|
|
Syntax can be a bit more concise, but harder to follow. Really, for most of us, there's not a whole lot of difference... |
|||
|
|
|
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. |
|||
|
|
|
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#! |
|||
|
|
|
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 |
|||
|
|