vote up 8 vote down star

Are .net languages (any of them - C#, VB.net, etc) really a good choice for mission critical device control code? Don't need realtime but need very responsive and resistant to configuration screw-ups. My gut tells me no, but maybe I'm biased. Have large codebase in Delphi (Win32) that is nearly bulletproof and works well, but hard to maintain because of dearth of programmers well-versed in it...

flag
What exactly do you mean when you say "device control code"? – Chris Upchurch Sep 15 '08 at 18:22
Controlling external devices but code resides on a PC. The external devices are of an industrial nature. In other words if we screw-up, people could get hurt. – avessey Sep 15 '08 at 18:24
How exactly do you suppose a language would be any more or less robust than another? – Rich B Sep 15 '08 at 18:29
I know of code written by my company using VB6 that does a similar thing that has never gone wrong. If VB6 can do it, I'm pretty sure .NET can! – Garry Shutler Sep 15 '08 at 18:30
closing as a) argumentative and b) discussion – Jeff Atwood Sep 17 '08 at 10:52

closed as subjective and argumentative by Jeff Atwood Sep 19 '08 at 1:56

13 Answers

vote up 10 vote down check

The .NET runtime is frequently undervalued in terms of efficiency so there is a bit of a looming cloud of reluctance for people who wish to write efficient code to use it, but in reality, especially since .NET 2.0 introduced Click-Once deployment and other JIT optimizations it's quite feasible. There are also techniques that can be used to allow similar methods of low-level optimization as those that were frequently used in C, such as the "unsafe" keyword, which allows (with the appropriate Code Access Security applied) direct memory access with pointer arithmetic and all, all while leveraging the Base Class Library and associated platform benefits (like Garbage Collection).

This isn't to say that it's definitely the right option, of course; sometimes there are too many native libraries or low-level processing operations or deployment considerations that would make using .NET burdensome. If you think you will be able to benefit from a .NET interface due to other parts of your infrastructure, but feel that the low-level code would benefit from a native language rather than a managed one another option you might consider would be a Mixed-Mode C++ Assembly, which, with some effort, can seamlessly blend .NET's Managed C++ with native C++.

link|flag
vote up 2 vote down

I've been writing real-time option trading systems in .net for nearly five years--split millisecond timing and tens of thousands of data to process in any given second and we have yet to find a task that .net is not suited for.

Unless you need absolute real-time processing in the computer science sense (in which case Windows is not a real-time OS,) .net is up to the task.

link|flag
vote up 2 vote down

Dearth of programmers:
If it is the main reason, I would not rewrite the whole thing. There are still a lot of good Delphi programmers out there who would prefer to to some Delphi code better than going C# just because they find more work opportunities in .Net land....
Post job offers !!!
(the old chicken and egg problem)

link|flag
vote up 1 vote down

It's all about people, not tools.

Great programmers will write great code, no matter the language.

(With the proviso that the language is actually capable of doing what you want it to)

link|flag
I guess then the question here is - Is the language actually capable of doing what the OP wants? – SDX2000 Jan 9 at 10:01
vote up 1 vote down

I think being "resistant to configuration screw-ups" is purely on the head of the developer and is not a property of the language or runtime.

And just so you know, .NET is being used in very small devices like CD players. There is even a version, called .NET Micro Framework, specifically for that purpose.

link|flag
vote up 1 vote down

In terms of responsiveness, .Net doesn't is not far behind native Win32 code. A .Net binary is compiled to an Intermediate language, which is then compiled to native Win32 code when called for the first time. So there may be a small delay when calling a function for the first time. Just do not put it on the same level as Java, in terms of responsiveness. Java uses a true virtual machine runtime environment, .Net does not.

From the ease of use point of view I must say that the framework libraries are quite complete and comprehensive. From my point of view, they are a great help in getting thigs done.

The documentation (online and offline) is quite complete and I find the whole ecosystem for 3rd party books and tools is quite healthy. I think, if many books, articles, blogposts, etc. are written about something, this thing is either hyped or simply works well. In the .Net case I think the latter is true. (Visual Studio is written in .Net and that works quite good for a whole lot of us)

link|flag
1  
Actually, I'm not so sure Visual Studio is written in .NET; I'm sure parts of it probably are, or that Mixed Mode C++ might be leveraged, but the existing codebase has not been entirely rewritten and VS has been around for quite some time. – TheXenocide Sep 22 '08 at 19:50
vote up 1 vote down

Mission critical means you need to answer the following:

  1. Do you have tools to formally verify your code according to the reqs? I believe Microsoft is building something for C# that does formal verification.
  2. If required, can your environment guarantee that a statement will be executed in X [milli/micro]seconds? (Java cannot, for instance)
  3. If required, does your environment support robust concurrency? Threading models of languages vary greatly and some may not satisfy your requirements.
link|flag
vote up 0 vote down

It comes down to experience. In theory, managed code will be more reliable, but in practice you're going to have a higher likelihood of doing something bad if you go with a technology you don't know well for mission critical products.

link|flag
vote up 0 vote down

It's not the language, it's what you do with it. Porting a large, existing code base (to any language) does sound dangerous.

link|flag
vote up 0 vote down

I have ported several "bullet-proof" delphi apps to .net.

I agree there is a shortage of delphi hackers. You definitely have to have ninjas do your translation if you want ninja level c# or vb.net code. If you poke around, I seem to remember hearing about an IL compiler for delphi, if that's the case you can compile your delphi onto .net and decompile it into c# and at least have a running start.

link|flag
vote up 0 vote down

It is an excellent choice especially for mission critical code. If you have any degree of control over the environment in which it's run it is exceptionally stable, and Microsoft's support (in the form of MSDN mostly,) makes deploying and developing very quick.

I'm not a shill, by the way. It's true. Not wise develop new technologies using it, but to get things done quickly and have them be stable you can't beat it.

link|flag
vote up 0 vote down

If it's mission critical,it should/needs to be dead simple. I mean, the more complexity you toss at the problem the more likley it is to blow up in your face. This means that what ever path one takes, make sure it's maintaiable in the long run. You will get bugs, how fast can you find them and fix them?

The tool itself is worthless without good knowledge of how to use it.

Myself, I would go for .Net, simply because its the environment I know best.

:)

//W

link|flag
vote up -1 vote down

Very responsive - .NET runs on a VM, which means that there will be an extra layer that you'll have to worry about. Consider that the London Stock Exchange runs on .NET (the recent crash they had was apparently a network issue), and that's far more resource intensive and realtime than whatever you're probably doing.

link|flag

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