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...
|
|
|||||||||||
|
closed as subjective and argumentative by Jeff Atwood♦ Sep 19 '08 at 1:56 |
|
|
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++. |
||
|
|
|
|
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. |
||
|
|
|
|
Dearth of programmers: |
|||
|
|
|
|
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) |
||
|
|
|
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. |
||
|
|
|
|
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) |
||||
|
|
|
Mission critical means you need to answer the following:
|
||
|
|
|
|
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. |
||
|
|
|
|
It's not the language, it's what you do with it. Porting a large, existing code base (to any language) does sound dangerous. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
