The company I work for has all of its legacy ("legacy" being used rather liberally in this context) code in VB.NET. They have about 6000+ lines of VB.NET code, so all of the developers are comfortable with it.

We have started to develop a new product, and are finding that some modules are easier to complete in C# than in VB.NET, such as Interprocess Communication via WCF.

The things our product will eventually need to do are as follows:

  • Communicate via IPC between Windows Services, Silverlight, and WinForms
  • Handle parallization, and all the complexity that comes along with it
  • Windows Service and WinForms development
  • ASP.NET, AJAX, and Silverlight development
  • Database (SQL) access
  • Lots of event handling (Sync and Async events)

My question is: Given the type of work we will be doing to complete our product, are there features of one language that will make life easier that the other does not have? And if so, it is worth asking the developers to switch to a language they are less comfortable with?

I was hoping to keep this as objective as possible, by listing exactly what type of work we will be doing with the product. Please don't turn this into a VB/C# holy war.

link|improve this question

feedback

12 Answers

up vote 15 down vote accepted

Given that the idea behind the .NET platform is interoperability between the languages (AKA, you're not tied to one language), if you are finding development easier in C#, and the rest of the team agrees, I would say work on the other components in C#. But, overall, VB.NET and C# can accomplish the same tasks. One thing to think about - is the reason the C# work going faster/easier because you understand it? If the rest of the team doesn't understand C#, but knows VB.NET, that will most likely take precedence.

If you're looking for a comparison of VB.NET and C#, follow the link. If you truly want to use C#, then I would recommend coming up with how you think it will make development faster (metrics and numbers are good, too) and go to your team with that information.

link|improve this answer
1  
This sounds pretty reasonable. I'll definately take this into consideration when choosing our language. – Onion-Knight Mar 12 '10 at 18:36
1  
only took me a week to move from vb.net to C#, the learning curve is pretty much nill – CoffeeAddict May 1 '10 at 3:22
feedback

The differences between VB and C# are shrinking. (VB will soon have anonymous methods and multi-statement lambdas. C# now has background compilation, soon optional parameters, etc.) The practical differences in VS 2010 will be:

  • VB has XML Literals, which are great. If XML tends to be a part of their rendering, that's a plus for VB. If you're sticking with ASP.NET forms though, this is less likely to make a difference.
  • There is still a small set of features that C# will have that VB doesn't. Very small. An example is the Yield keyword, very handy for specific situations but something many will not notice.

Other than that, it's just the old VB v. C# question. A matter of taste for terse or verbose. (I slightly prefer VB because I love XML literals; if not for that I'd slightly prefer C# due to more online examples and slight syntax preference.) Since your team is already experienced in VB, that will probably make the difference. Kathleen Dollard has a great presentation on the difference between C# and VB.Net: Part 1 & Part 2.

link|improve this answer
2  
The practical difference will mainly be the totally different syntax. – Dykam Mar 12 '10 at 18:58
Agreed, but I figured he already new that. – Patrick Karcher Mar 12 '10 at 19:14
feedback

People who learn vb.net also need to to know c#.net also because almost every example you'll find online will be in c#.

link|improve this answer
3  
I think online examples follow Murphy's Law. I work in C# and most examples I find online tend to be in VB. – Anna Lear Mar 12 '10 at 18:25
@AaronS: I don't think so. MSDN has very complete documentation over VB and there are lots of web sites over VB as well. It maybe be true that you will find more examples on C# than VB, but when it comes to examples, more isn't necessarily better. As long as you can find what you want in VB, that should be enough. – Bruno Brant Apr 8 '10 at 23:01
feedback

VB.NET will make your life easier in the short term but much more difficult in the long term. VB.NET allows you to do non-OOP programming too easily even with the Strict/Explicit On. One example: Modules that mask as static classes but actually allow an incredible level of global access to its "members."

You might also notice that C# is being favored more and more in .NET as the platform matures. It's entirely possible that in a few years it will be very difficult to get support for your VB.NET issues and even harder to find new engineers who know the language.

link|improve this answer
I'm sure there are some great VB.NET coders out there writing great code, but I agree that VB seems to make it too easy to program badly and/or attract bad coders. My first .NET experience was maintaining someone else's VB.NET program that had loops where the counter for the loop was being incremented and evaluated inside functions called by the loops. There were many bugs related to the use of global variables. – AaronLS Mar 12 '10 at 18:37
I've seen that and worse in C# code. If you care about code quality you need to use regular code reviews, not superstitions. – Jonathan Allen Mar 24 '10 at 8:25
feedback

One of the reasons I prefer C# is that it has a similar syntax to JavaScript. If you are using ASP.NET, it makes it easier to switch from client side to the server side script without too much brain ache. Also, in terms of hiring programmers, you can attract the odd Java programmer to the C# world, but dragging Java programmers into VB.NET is more of a kicking and screaming affair! :-)

link|improve this answer
feedback

as Far as I know, you can do kinda' hybrid projects, but doing this (I Believe) will make people's life harder...

link|improve this answer
Yeah, thus far we've done hybrid-ization, but we would prefer to stick to one language. – Onion-Knight Mar 12 '10 at 18:19
then I'll suggest you start your new projects with the language with more support for your problem... take a look at the # of questions for each tag (c# , vb)... – Luiscencio Mar 12 '10 at 18:22
1  
Also it's worth noting that (last I knew, anyway), you can't build an assembly from multi-language source files. – harpo Mar 12 '10 at 18:29
feedback

You should go with what you know. If they know VB.Net (much better than C# that is) that will ultimately be the easiest route to take. There are differences between VB.Net and C#.Net, but for the most part they can accomplish the same tasks. Switching languages takes a lot of time, because you first have to learn the language, and then you have to work with enough to be able notice the tiny gotchas that are different between them.

link|improve this answer
feedback

Visual Basic and C# are, for the most part, dialects of each other. C# tends to be the second to get new language features, since Microsoft has full control over Visual Basic but is trying to make C# more comfortable for programmers who come from C++ or Java backgrounds. I have a strong personal preference for C#, but it's just that- a preference.

Anything that interacts with native code is going to be much easier in C# than Visual Basic simply because C# has syntax for native memory management that Visual Basic really doesn't have the same support for (related is the "unsafe{}" block in C#). But nothing you've listed here needs that- 100% of this is standard .NET library stuff, with a healthy whipped-cream topping of Linq for the SQL work.

That means this project comes down to personal preference. If your team has more experience with Visual Basic, that makes Visual Basic probably the correct tool to use.

link|improve this answer
2  
Actually, for a long while C# has been .Net's "main language", having received many features long before any other technology, and just since .Net 3.5 release Microsoft has minimized this "advantage" and has been treating all technologies more or less equally. – wintermute Mar 12 '10 at 18:30
Many features like Optional Parameters, Dynamic Typing, and XML literals? Oh wait, those are VB-first features. – Jonathan Allen Mar 24 '10 at 8:21
Regarding unsafe blocks, I've never seen anyone use them correctly. Every time I see one I have been able to rewrite to use normal p/invoke code that works equally well in VB and C#. – Jonathan Allen Mar 24 '10 at 8:24
feedback

For your application, and depending on its complexity, it may be worth writing a small module in both languages. This would allow you to become familiar with C# and also compare readability and efficiency in regards to what you are trying to accomplish. I myself love to learn new languages so I would even do it in my spare time.....that is if I had any :/

link|improve this answer
feedback

To me the difference is not so much in the languages themselves. I use both frequently and from time to time I miss the other language's features.

The difference starts when you use framwork tools like DI, ORM, mocking etc. Most tools seem to have a strong focus on C# for syntax,documentation and examples. I assume the tools are used by many VB programmers as well but they don't seem to be very visible on blogs, discussiongroups etc.

link|improve this answer
feedback

The visual studio experience is the biggest difference (if you are using visual studio).

For me, the VB.net background compiler frequently locks visual studio in a solution with 20+ projects on a pretty beefy computer. There is no way to turn the background compiler off for vb.net.

C#, in visual studio, will never freeze, as your typing, because VS would like to present you with a list of errors from the compile you didn't ask it to do.

Also, the re-factoring tool support isn't the same and things like resharper can do a lot more with C# code.

link|improve this answer
feedback

I've read all the comments above. I'm a C++ developer but I always praise Visual Basic .NET as it provides an easier way to get things done than any other programming language in existence does. Microsoft has tried its best to keep Visual Basic as popular as it was when it was first released. Most people think that Visual Basic is easier to learn than C++ or C# but this is not true. If you've programmed in Visual Basic .NET, you must know how much you can get from this language as easy and as fast.

VB.BET supports English-like syntax. For example:

For i=0 To 10 
    MessageBox.Show(i.ToString)
Next

The above statements can be understood by a non programmer as they use a normal English-like sentence. Same statements in C# are :

for(i=0 ; i<=10 ; i++)
{
    // print(i)
} 

The above statements written in C# can't be understood by the person who doesn't know about programming, or more specifically programming in C++ or C#.

Although I do lot of programming in C#, I always prefer to program in Visual Basic .Net

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.