vote up 32 vote down star
6

At the company where I work, we have a number of legacy apps written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to rewrite the applications from scratch due to several compelling factors:

1.) Lack of documentation.

2.) Lack of exception handling.

3.) Lack of logging.

4.) Lack of extensibility.

Because these applications have a lot of duplicated code shared among them (copy-paste reuse), we want to rewrite it in a way that emphasizes reusability, testability, and extensability. I am therefore considering a move away from VB 6.0 and into .NET. That leaves me with a choice between VB.NET and C#. The development team is open to suggestion. However, they have no familiarity with C#, and are more familiar with Visual Basic (classic). In either case, they'd have to learn .NET.

Teaching is not my issue. I've done it before, and I have no qualms about doing it again.

It bears noting that the source code is going to have to be rewritten, because a redesign is called for. So, at this point, we get to choose which language we want to use. I am personally leaning towards C#, feeling that it enforces more disciplined coding practices (it's a more intrinsically type-safe language and comes with a far stricter compiler).

I am, however, very interested in the thoughts of my peers before I make a decision. So, if you have done this before, or if you have any words of wit or wisdom to impart, I'd really appreciate it.

I suppose, in closing, that the question is, which language would you go with if you had the opportunity to make a clean break from VB6.0 and move to .NET?

UPDATE: I apologize if anyone thinks that I started this thread for the sole purpose of being argumentative. That was the furthest thing from my mind. Instead, I wanted to make sure that I was making the right decision at a crucial point in our company's decision making procesesses. To do so, I thought it best to seek input from those who had been through the process themselves. Stirring up strife was the last thing I wanted to do.

Thank you all for your input. It was thought provoking and I'll be going over it with my colleagues as we select a language for our future development.

flag
2  
This isn't a religious war. It's about a process for selecting a language to use in a business process, and the pros and cons involved. – Mike Hofer Feb 3 at 17:48
2  
It's a good question and if it causes argumentative replies, that's the fault of the repliers and we should -1 as appropriate (or just +0 if you're hoarding rep points) – MarkJ Feb 4 at 16:05
1  
i really do not understand those 'religious wars' between c# and vb.net, that's just plain crazy, it the same technology but different syntax... where's the problem, use the one your or your team is most familiar with... – Sander Versluys Aug 27 at 12:07
show 7 more comments

38 Answers

prev 1 2
vote up 0 vote down

Having made this change myself, I'd suggest C#. I've found that VB.NET encourages the same mistakes as VB 6.0 did (declaring variables with no type, which leaves them implicitly as object, using modules with globals, etc). Also it seems that there are more C# developers for hire. In addition there are many useful tools that work with C# but not with VB.Net. Doxygen in particular is great for creating class documentation for your C# (it even imports your standard XML comments), but does not work with VB.NET.

Good luck!

link|flag
show 2 more comments
vote up 0 vote down

I have also seen a couple of examples on the web where the IL created by VB.NET was not the same as the IL created by C#. The IL from C# was shorter and more concise. I guess since different people wrote the compilers (I assume anyway), they don't alwasy compile to the same IL. If C# compiles to more efficient IL, then that's certainly an advantage for C#.

link|flag
show 2 more comments
vote up 0 vote down

I'm not biased to either language but you do have to factor in that if the majority of developers are into c# then that makes recruiting these developers easier, you may also find more examples and resources in this language as well.

At the end of the day you are learning about the .net framework as much as you are learning about the language, for me this is where the majority of the learning is.

link|flag
vote up 0 vote down

Here's a different reason to pick C#:

Many of the good OO books these days are written using Java in code examples. If you only know VB .NET, they're hard to read. If you know C#, they're easy to read. So even if you plan to mostly do VB .NET development, it's worth knowing C# so that you can follow along when you read programming books.

link|flag
show 1 more comment
vote up 0 vote down

My language progression was VBScript, VB6, C#, and most recently VB.NET. My pick is still C# based on conciseness and availability of examples. When I use VB.NET, it feels like a square peg has been shoved into a round hole. Several syntax additions to support generics, inheritance and so on feel contrived.

link|flag
vote up 0 vote down

I'd say go to C# because you will find it easier to recruit better programmers in the future. You get a different set of skills with C# rather than VB developers.

link|flag
vote up 0 vote down

If you are going to be implementing a software development life cycle that is process-oriented and based on an internally designed and developed architecture (with lots of shared class libraries, etc.), then I would go with C#.

The C# language was designed and styled for that kind of development, whereas VB continues to operate as a RAD and prototyping type of language. You will be doing your existing developers a favor, since C# is generally considered to be a more "Pro"-skills type of language in .NET over VB, mostly because of the cutting corners-mindset that many people associate with VB. If they do leave your project, they will have a shot at leveraging their old VB6 skills with C# at organizations that are trying to move away from the RAD development mindset.

On the other hand, choosing C# will also protect your investment to some degree, I'm betting, because the C# job market is more competitive, I believe. So, when your developers are trying to jump ship they'll need to be proficient in .NET, not simply VB, whereas, I think that VB .NET jobs are generally not attracting hardcore developers. If your developers do leave, then you'll be able to get better ones, most likely.

I for one, would avoid a VB .NET shop when I am looking for a job, for many reasons, other than the fact that I simply do not like the wordiness case-insensitivity. I'm a sensitive guy.

Oh, and one more thing: your team will be using the lingua franca of StackOverflow .NET developers, generally speaking.

link|flag
vote up 0 vote down

i no well that nb.net is more important

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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