up vote 50 down vote favorite
15
share [g+] share [fb]

I saw a similar question about the reason Google Chrome wasn't written in C#. But with the upcoming version of Windows and Microsoft's flagship language, I am having a hard time understanding why Microsoft isn't pushing C# to its fullest potential to give it more exposure via their market share?

In addition can be interpreted as "Is C# and the .Net framework suitable to run a modern OS like Windows 7"

Btw this is not a flaming question, but curiosity. I use C# daily and really love it.

link|improve this question

46  
A better question might be is C# and the .Net framework suitable to run a modern OS like Windows 7. – JoshBerke Apr 23 '09 at 19:54
22  
COSMOS, Singularity, SharpOS – Mehrdad Afshari Apr 23 '09 at 20:06
8  
@Chris, you can implement a C# compiler that does not require a VM. In other words, C# can live without the .NET Framework. – Robert S. Apr 29 '09 at 4:09
8  
C# without a VM (or rather GC, to be specific) wouldn't have any advantages over C++. – Pavel Minaev Aug 11 '09 at 23:45
8  
you don't need a VM for a GC either. – Sekhat Dec 21 '09 at 23:56
show 10 more comments
feedback

closed as not constructive by Kev Aug 27 '11 at 13:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

27 Answers

Because there is a HUGE working code base in C.

link|improve this answer
67  
Any discussion about C#'s speed, or .NET's usefulness, or whatever is moot when this answer is taken into consideration. – Robert S. Apr 23 '09 at 19:46
12  
@Joan: Depends on the meaning of M: xkcd.com/394 – Mehrdad Afshari Apr 23 '09 at 19:47
10  
But Linux is only 4 million, that's why it's better! – Chris S Apr 23 '09 at 19:54
31  
I just realized you can now get comments voted up by posting XKCD links. – Michael Myers Apr 23 '09 at 20:07
49  
Wait wait wait. Did you say "working code base". :) – GMan Apr 23 '09 at 20:26
show 13 more comments
feedback

I think you need to ask a slightly different question to be more accurate.

Why didn't Microsoft rewrite Windows 7 in C#

There is a very simple answer to that one. Windows comprises an estimated 50 million lines of code. Rewriting 50 million lines of code just to change languages is a ton of work for very little / no profit.

link|improve this answer
+1: And rewrite C# too. – Masoud M. Oct 30 '11 at 12:47
feedback

Basically because it is not ideal for an Operating System. C# is, by definition, a high-level language that is built on many layers of features and (usually) the .NET framework. Memory management is abstracted away from the developer and for such a critical application that is under incredible scrutiny for efficiency and performance, this is not an ideal environment for Op Sys development. The list goes on, but that's a big part of it.

link|improve this answer
23  
Ah, but this the old thinking! The new thinking in system architecture is to design a full opperating system in which the CLR (or VM) along with the Jitter is pushed down right to the lowest level. It would sit right on top of a small EFI kernel. – David Leon Apr 23 '09 at 20:27
2  
Very interesting comment. Can you provide a link to some verification? – JoshJordan Apr 26 '09 at 2:07
6  
A few years ago people would have said the same thing about writing an operating system in C rather than Assembly. Yes, there's a difference between the two comparisons, but as computers become faster and faster, I think it's inevitable that operating systems will more in this direction. – musicfreak Dec 22 '09 at 0:06
5  
@musicfreak: The difference is that C compiles to assembler in a straightforward way. It doesn't require additional services. C# doesn't do its own memory management, but requires garbage collection. Computers will get faster, but there will always be apps that require all the performance they can get, so slowing down the kernel is a real bad idea. – David Thornley Apr 8 '10 at 14:51
3  
We actually have production operating systems based on .NET. Specifically the .NET Micro framework. – Jonathan Allen May 25 '10 at 22:38
show 1 more comment
feedback

They're probably still researching an OS built in something like C# (Microsoft Singularity)

Singularity is a research project focused on the construction of dependable systems through innovation in the areas of systems, languages, and tools. We are building a research operating system prototype (called Singularity), extending programming languages, and developing new techniques and tools for specifying and verifying program behavior.

There is an interrupt dispatcher written in C but once it finishes, it gets dispatched to compiled C#.

link|improve this answer
2  
Well done! I was going to mention this but you beat me to the punch. I love the notion of Singularity. Let's have it. Bring it on. – David Leon Apr 23 '09 at 20:25
1  
But what are all these .cpp/.h files you can see in Singularity?! – Chris S Apr 23 '09 at 21:18
3  
Singularity does have C/C++/ASM. COSMOS just has ASM I think. All C OSes do have assembly bootstrap files too. It's not considered the kernel language though. – Mehrdad Afshari Apr 23 '09 at 21:34
That was from looking at /Kernel/Native (e.g hal.h, thread.cpp) but I don't know the code base enough to judge well – Chris S Apr 23 '09 at 21:50
2  
I have listened to podcast with Singularity dev/owner and I think he said that it's purely a research project and even though some ideas do spill out in mainstream, the OS itself will never do. – bychkov Apr 23 '09 at 22:06
show 2 more comments
feedback

Because rewriting 60 million lines (no, I'm not exaggerating) of perfectly good C/C++ code just to prove a point would be insane? I would think that's the main reason.

link|improve this answer
4  
Seems everyone is slightly at odds of how many lines of code it actually is. Only a 20 million difference in this post alone. – Terry Apr 23 '09 at 19:51
Also I wonder if they count comments, spaces, etc since there is no standards for LOC AFAIK. – Joan Venge Apr 23 '09 at 19:54
13  
Yes. You are exagerating. From the code I have seen from Microsoft, "slightly good" would be stretching it. "Perfectly good" is an extreme exageration. – BubbaT Apr 23 '09 at 20:01
25  
@BubbaT: I'd be willing to bet their code is better than yours – Matthew Whited Jun 11 '09 at 17:51
2  
For a code base the size of Windows, estimates varying by 20 million is pretty much in the noise level. (Having worked in a different code base of equivalent size....) As for how to count LOC, some versions of Visual Studio include code metrics. LOC for C# does not include comments, blank lines, or bracket-only lines. Re: MS code quality, I've been very impressed in recent years. .NET is excellent. I think their focus on security for XP SP2 really improved their focus on code quality in general. – Cylon Cat Dec 6 '09 at 3:31
feedback

One reason is that Windows Vista was not written in C#. Or XP, or 2000, or NT4...

Windows may be one of the biggest code bases in the world, and maintains decent backwards compatibility. Rewriting it in a new language isn't likely.

There was some other issues back in the longhorn days... They quote some guy named Joel Spolsky, so take this with a gain of salt... ;)

link|improve this answer
Very true. They didn't write windows 7 from scratch. Some people are even calling it Vista Second Edition. To write it in C# would mean that they would have to basically throw out everything, and rewrite the entire OS. – Kibbee Apr 23 '09 at 19:47
1  
some guy named Joel Spolsky who btw is also a co-founder of stackoverflow – Pacerier Sep 25 '11 at 20:32
1  
(hence the winky smile) – Aardvark Sep 25 '11 at 23:51
feedback

Do you use C# to create device drivers? I bet you don't, nor does anyone else? So, why would Win7 device drivers be written in C#?

Do you often scrap existing code and rewrite it, just for marketing purposes? Neither does Microsoft.

This is a pretty silly question, if you think about it.

link|improve this answer
14  
Marketing exercise for what? To market C# or IE? Which of them needs marketing? Who would be impressed by Microsoft wasting time rewriting "working" code for no apparent benefit? – John Saunders Apr 23 '09 at 21:22
10  
I think a WebKit based IE will make a MUCH BETTER marketing! – Mehrdad Afshari Apr 23 '09 at 21:35
29  
No offense but your way of speaking is kinda rude.People are just exchanging some ideas. If you don't like this questions,then just pass it. – Braveyard Aug 11 '09 at 23:44
31  
-1 for "Silly Question". Don't be so arrogant and distasteful. This is a perfectly valid question. – Callum Rogers Dec 21 '09 at 23:57
11  
People already downvoted for the harsh tone of the answer, so I'm downvoting because almost a year later you're still deriding people for not commenting even though reasons have already been given. Perhaps you'd like them to provide an address so you can go punch them in the nose? – Brian Ortiz Mar 6 '10 at 2:08
show 30 more comments
feedback

I think a big part of the reason is performance. A lot of people really don't need large amounts of performance, checking email, browsing the web are all pretty simple and don't need a lot of performance.

However those who actually do need the performance (think Pixar or other companies that do rendering, scientific communities, etc), having the overhead of all this managed code would make computing in these areas extremely difficult because every CPU cycle counts.

link|improve this answer
3  
As I commented before on another answer: Not true. System protection in Singularity is achieved completely in software, cutting the cost of system calls down (I think at least an order of magnitude lower than a traditional OS). There are many factors to overall performance. – Mehrdad Afshari Apr 24 '09 at 17:37
1  
But according to the slide deck I saw for Singularity, 23% of the code is unsafe code, with 5% of that written in C++ and asm. – RussellH Sep 24 '09 at 20:04
feedback

I don't think OS level engineers consider a managed language acceptable, the common excuse is probably performance.

Of course, when C first came out, many didn't believe you could successfully code an OS in anything but assembly.

link|improve this answer
10  
except that when the world first saw C, someone already had written an OS using it – anon Apr 23 '09 at 20:00
3  
In a sense you are correct. OS level engineers do not consider managed languages acceptable. Unfortunately, they are wrong about that. This is an example of crumugeon-thinking. "Because we have always done it this way, it must always be done this way." – David Leon Apr 23 '09 at 20:29
That is why research projects such as Singularity exist. Gives crazy engineers the toys that are needed to see what works. – Matthew Whited Jun 11 '09 at 17:52
feedback

I think the biggest reason is that C# gives away the source.. IL is pretty easily converted back into high level code, and recompiled. This would effectively make Windows Open source.

link|improve this answer
2  
Haha, that's an interesting view. – Joan Venge Dec 7 '09 at 18:27
...which would be great! – Callum Rogers Dec 21 '09 at 23:59
Nah, I've downloaded projects with obfuscated source and it's like having no source. The method and property names have "aaa()" as their names, hard to read and understand. – Chris Jan 19 '10 at 18:05
It doesn't in any shape or form make it open source. Also you couldn't do anything with the code. Having code in the open with no right to use it only helps in things like internal code(who would want to make internal windows illegally, note that us government and probably other governments can examine it for legally) Considering how easy it is to pirate Windows having the source through code leaks or shared source(both of which I think have given away parts of the code in windows) wouldn't change anything – Roman A. Taycher Nov 19 '10 at 14:49
Considering how easy it is to pirate Windows having the source through code leaks or shared source(both of which I think have given away parts of the code in windows) wouldn't change anything. – Roman A. Taycher Nov 19 '10 at 14:49
feedback

See the source code in C/C++ of windows XP on Usenet (Win32) and you will understand...

link|improve this answer
feedback

To add to all the answers here, how about libraries. There are tons of classes in .NET which simply wrap the Win32 API.

Such as Directory.GetFiles(), check it out with reflector, mainly the InternalGetFileDirecotryNames() internal method, it just turns around and calls the Win32 API.

The answer to your question is more than just, "it's hard" or "it takes lots of time". It is also about resources, not to mention having a large code base that's WRITTEN, TESTED, and PAID FOR. To be rewritten, which WILL introduce bugs guaranteed.

Could Microsoft reimplement Windows with a .NET core instead of a Native Core? Absolutely, there is no question it is possible. It would just time to get it right. I don't think anyone would want to wait that long. Parts of the OS will be implemented in Managed Code and perhaps one day the Kernal too, but to just dump out millions of line of working code, isn't going to happen.

Also, if we remove native support in the OS, then apps like Office, IE, Firefox, iTunes, and Visual Studio, will no longer work! There are parts if not the entire product written in C++.

p.s. If the Office team has publicly refused to rewrite Office in .NET, how can you expect the Windows team (the platform Office runs on top of) to rewrite their product?

link|improve this answer
Thanks but how can the office team can refuse it. MS owns it, right? If they tell them, then they are going to do it. It's not they are a separate company. – Joan Venge Jan 20 '10 at 18:02
1  
@Joan Venge, because it's a huge product, and it's breath stretches beyond just Windows. There are COM components written which support DDE (dynamic data exchange), that is how you can have Excel 2003 communicate with Word 2007. All of that logic and implementation must be rewritten. I'm sure many of the features of .NET will speed up the process, but it is a huge undertaking, not to mention the current release cycle. They can order the Office team to rewrite in .NET, but how many months or years would that require parallel development, not to mention critical bug fixes when defects appear – Chris Jan 20 '10 at 23:30
You are right. It's a huge undertaking. – Joan Venge Jan 21 '10 at 18:16
2  
+1 for "To be rewritten, which WILL introduce bugs guaranteed." – Andrei Rinea Nov 5 '10 at 23:46
feedback

As others have mentioned: Singularity is a research project and won't see production. However, there's also Midori, which is said to be based off the Singularity research project. While most things regarding Midori are pure speculation, it's not unlikely that it will make its way into a future release of Windows. However, don't expect Windows 8 or even 9 to be based on Midori, since the switch to a managed OS would break nearly every application in existence (although .NET based applications might be easily portable). It's more likely that the change to Midori would be gradual, where Midori would run along Windows, or even on Windows as a process.

What's perhaps more interesting than Midori to replace the desktop Windows are the rumors that Midori will power Windows Mobile 8, something much more feasible than desktop Windows.

link|improve this answer
feedback

Re-writing any large project written in 'C' or 'C++' (well any language really) would be a long journey which most companies would not risk. Bringing back the OS to the same feature set as previous versions would more than likely take more time than delivering several versions of the existing product.

A more practical approach is to identify a migration path that can occur over time while minimizing impact of existing features (and hopefully adding value at same time).

link|improve this answer
You'd also have to identify a reason to do it. That's been lacking. – John Saunders Aug 12 '09 at 8:56
Agreed, if there is no value added then your just wasting your time. – karmasponge Aug 13 '09 at 0:02
feedback

C# is a high level language, a great powerful language for creating applications, not operating systems. It runs in a layer (IL) on top of the runtime framework and the runtime framework 'currently' runs over an OS (typically Windows). I am not aware of a .Net runtime framework running on bare metal.

That's the same scenario with Java. There are some small projects of Java Based Operating Systems, but not too serious. And Java has runtime environment for bare metal (again, not too serious). There are even some sort of Java-ready hardware too, but again a very long way to make it commercialized.

To me that is the main issue, of course there are more to it, such as device drivers and so on.

link|improve this answer
feedback

What language is the CLR written in......I rest my case.

link|improve this answer
Although I don't disagree, that's a weak argument. What language are C compilers written in? Definitely not in a machine language and not likely in an assembly language. The CLR could be rewritten in C#, but it will have to be rewritten. – Jeff Mercado Apr 2 '11 at 8:53
C compilers are written in C plus assembly. I am not dissing C# I use it and like it. But I wouldn't use it for systems/real time programming. – Mark Apr 7 '11 at 22:29
feedback

I've read somewhere on Microsoft Research that they are researching on how to implement a Win32 "Runtime" on a managed operating system. They talked about a managed driver programming interface, too. Too bad i can't find it anymore. I think it might not be impossible, but of course it will always have parts of its codebase written in assembler and C++/C. I'm also sure if the runtime is really the at the foundation of the operating system, the performance overhead would become smaller.

link|improve this answer
feedback

Speed / Performance. As fast as the .net JIT VM can be, it's still too slow / heavy to run an OS in.

link|improve this answer
1  
you wouldn't be able to run the MSIL. there wouldn't be anything to run it. you would have to compile the MSIL into native instructions. – Darren Kopp Apr 23 '09 at 19:50
7  
Not true. System protection in Singularity is achieved completely in software, cutting the cost of system calls down (I think at least an order of magnitude lower than a traditional OS). There are many factors to overall performance. – Mehrdad Afshari Apr 23 '09 at 20:04
Yeah, you still have to convert the MSIL into something that can run naively. Running your bare-metal code though a JIT to get to assembly is a bit silly. – Electrons_Ahoy Apr 23 '09 at 20:33
What I was trying to get at Darren, C# as with Java is converted into IL so it is technically a 4th gen language – Chris S Apr 23 '09 at 20:56
@Chris: Language generation has nothing to do with being modern or getting converted to other languages. According to Wikipedia: "Fourth-generation languages have often been compared to domain-specific programming languages (DSLs). Some researchers state that 4GLs are a subset of DSLs." – Mehrdad Afshari Apr 23 '09 at 21:00
show 2 more comments
feedback

A little bit of a late comment but for googlers like myself..

You have the COSMOS project os that is -

"implemented completely in CIL compliant languages"

It ain't pretty but it is a POC that is going somewhere..

link|improve this answer
feedback

What would be the point? There isn't much that you can't do in C# that you can in C/C++ using Windows SDK. It would be about 1000 times easier to write a .NET layer over the missing functionality than to rewrite Windows in C#.

link|improve this answer
feedback

I think a great deal of the real reason has to do with divisions within Microsoft. Windows is produced by one division. C#, .NET, and so on, are produced by another division (developer tools).

To make a long (and frankly, ugly) story short, everything I've seen or heard indicates that the Windows division has little (if any) interest in using C# or .NET at all. From the sounds of things, nearly the only things from the developer's tools division that the Windows division uses at all are the basic command-line compiler and linker -- and even that's pretty grudging, and done primarily because they have no real choice.

link|improve this answer
feedback

The runtime's performance and stability, while much improved in the later versions, still isn't to the point where you can build an OS on it and claim 5 9's of uptime, which Windows Server needs to do. You could in theory build the Shell on C#, but there are still a bunch of trade-offs there.

link|improve this answer
feedback

Garbage collection.

You want a real-time system without needing to pause randomly, sometimes for even more than 1 second. Imagine browsing, listening to music, and watching stock charts, and then BAM, garbage collection.

You can't use an interrupt handler that has random interrupts to clean up memory. See DPC for a small explanation.

link|improve this answer
5  
Windows isn't a real-time operating system (National Instruments RTOS is), and garbage collection isn't necessarily not-real-time (IBM Metronome is). – 280Z28 Aug 12 '09 at 0:35
I meant real-time as in soft-real time. Obviously you aren't going to get perfect time slices, but its better predictability than a garbage collected language like Java/C# where pauses can be as large as a second or more. – Unknown Aug 12 '09 at 3:20
3  
Well, a "real-time system" is a fairly heavily used and specific term in our industry, and it certainly does not describe any machine running Windows. – JoshJordan Sep 2 '09 at 13:59
Windows CE is real-time, Josh. – Henrik Jan 30 '10 at 5:47
Ephemeral garbage collection FTW! Given another 10 years we might have lisp machines back... ;-) – Ukko May 15 '10 at 4:06
show 2 more comments
feedback

I think the sole reason why Microsoft didn't write Windows 7 in C# is because .Net is just a set of user libraries that utilize native Windows API. (Repeat of Yassir).

Think it of like this - would you write an operating system in VB6? VB6 is an interpreted language - so it requires an OS with the VB6 runtime, which wouldn't make any sense if you were trying to make an OS that ran in an OS.

I would imagine Windows 7 was written in C, some C++ and Assembly. Something that has this large of a codebase has to have sprinkles of other languages in it for optimization.

link|improve this answer
2  
Whats with the down vote? .Net is just a wrapper to the Windows API which the API needs to be written in something other than something that relys on the .Net framework. – Nathan Adams Mar 28 '10 at 17:14
I didn't downvote, but I'd guess your answer contained too many inaccuracies. For example, VB6 was compiled to native code, it just needed a runtime library. So does C++, normally. new and delete must be implemented somewhere, after all. If it's possible to use C++ without its common runtime, why wouldn't the same be possible for VB6 or even C#? – nikie Apr 8 '10 at 14:46
C++ is an interesting creature to bring up, but both VB6 and C# both require the use of a library. VB6 and C# code will not run without this library. C++, although new and delete are implemented somewhere, I couldn't tell you how, are built into the language rather than a library. You certainly can build C++ programs without iostream, but it won't actually do much - at least nothing you can see. In fact, VB6 did spit out "P-Code" if you wanted it to: bit.ly/d5n4ki - so we are both right. – Nathan Adams Apr 9 '10 at 0:03
-1: as other answers state, the C# language does not require a library. The current C# compiler, csc.exe does produce code that requires a runtime. – John Saunders Dec 14 '11 at 18:49
feedback

It's entirely possible to load required runtimes with native API and throw a .NET application at it.. Figuring out exactly what runtimes to load would be the hardest part..

Simon

link|improve this answer
2  
@Simon: could you please elaborate? – John Saunders Apr 8 '10 at 14:35
feedback

C# was new when Vista was under development, MS got lot of experience C++ programmers and code base of Windows Vista ready for performance and feature improvement.

Changing programming language for OS from C++ to C# is not that costly for Microsoft they did it before and I am sure they will do it in future, its just matter of time.

link|improve this answer
feedback

Because C#'s code is recognized by Windows itself, not by your computer's hardware (BIOS and/or CPU). You would need to have another version of Windows installed to be able to run an OS off of a high-level language like C#.

Assembly and C are two of the lowest level languages that any computer will understand because they relate directly to the BIOS/CPU. C# is a wrapper around lower-level languages and the Windows API.

link|improve this answer
1  
-1: C#'s code is not recognized by Windows. C# code is compiled to Microsoft Intermediate Language (MSIL), which is later just-in-time compiled by the CLR to native machine instructions. Windows has nothing to do with it. – John Saunders May 1 '10 at 0:28
1  
It runs on top of the .NET Framework; you must have the framework installed for your machine to be able to interpret the code. – amerninja13 Jun 4 '11 at 22:23
1  
How does that relate to my comment? – John Saunders Jun 5 '11 at 1:25
feedback

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