vote up 12 vote down star
8

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.

flag

56% accept rate
19  
A better question might be is C# and the .Net framework suitable to run a modern OS like Windows 7. – Josh Apr 23 at 19:54
Good point, added to the question. – Joan Venge Apr 23 at 19:59
12  
COSMOS, Singularity, SharpOS – Mehrdad Afshari Apr 23 at 20:06
2  
@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 at 4:09
2  
C# without a VM (or rather GC, to be specific) wouldn't have any advantages over C++. – Pavel Minaev Aug 11 at 23:45
show 6 more comments

19 Answers

vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
You'd also have to identify a reason to do it. That's been lacking. – John Saunders Aug 12 at 8:56
Agreed, if there is no value added then your just wasting your time. – karmasponge Aug 13 at 0:02
vote up 1 vote down

I am just wondering if they wrote the os with C#, what would the framework be written with ?

link|flag
2  
C#. There's no reason that the same language can't be used both for an OS and for user-level code. – John Saunders Aug 12 at 8:56
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
1  
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 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 at 3:20
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 at 13:59
vote up 3 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

you just can't c# needs .net framework and .net needs to run on windows !!

the best language to create an os is C ( they use some assembly )

link|flag
C# is just a language - it doesn't need the framework. – JoshJordan Sep 2 at 14:00
@josh : can you run c# code without .net or Mono ? – Yassir Sep 2 at 16:34
vote up 4 vote down

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|flag
1  
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 at 17:37
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 at 20:04
vote up 0 vote down

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|flag
vote up 4 vote down

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|flag
2  
except that when the world first saw C, someone already had written an OS using it – Neil Butterworth Apr 23 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 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 at 17:52
vote up 13 vote down

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|flag
4  
IE rewritten in C# would be a nice marketing exercise – Chris S Apr 23 at 21:09
7  
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 at 21:22
3  
I think a WebKit based IE will make a MUCH BETTER marketing! – Mehrdad Afshari Apr 23 at 21:35
2  
Not correct. In Singularity, for instance, everything runs in kernel mode. Process isolation is achieved by managed code verification techniques (called SIPs in Singularity). It's a completely software based approach of enforcing invariants. Device drivers can be written (and are written in some managed OSes) in C#. – Mehrdad Afshari Apr 24 at 17:36
2  
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. – Aaron Aug 11 at 23:44
show 7 more comments
vote up 15 vote down

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|flag
11  
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 at 20:27
1  
Very interesting comment. Can you provide a link to some verification? – JoshJordan Apr 26 at 2:07
vote up 1 vote down

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

link|flag
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 at 19:50
6  
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 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 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 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 at 21:00
show 1 more comment
vote up 46 vote down

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|flag
Currently, microsoft is under designing process. Once they achieve stable version, then will move it to c#. – Syed Tayyab Ali Apr 23 at 19:55
1  
@Syed Tayyab Ali: Do you have any reference? – Mehrdad Afshari Apr 23 at 19:57
3  
@Syed, I highly doubt that is true. I've been a part of several conversions from native to managed code on a much much smaller scale (max ~500,000 lines). Doing 50 million and getting it stable would require an incredible work force, time and lots and lots of testing. – JaredPar Apr 23 at 20:00
3  
And I guess they have tried (to some extent) and failed once in Longhorn, which caused many problems for an OS as good as Vista :) – Mehrdad Afshari Apr 23 at 20:02
microsoft-watch.com/content/developer/… – Simucal Apr 27 at 8:35
vote up 6 vote down

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|flag
1  
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 at 19:51
Also I wonder if they count comments, spaces, etc since there is no standards for LOC AFAIK. – Joan Venge Apr 23 at 19:54
8  
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 at 20:01
7  
@BubbaT: I'd be willing to bet their code is better than yours – Matthew Whited Jun 11 at 17:51
vote up 19 vote down

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|flag
1  
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 at 20:25
1  
But what are all these .cpp/.h files you can see in Singularity?! – Chris S Apr 23 at 21:18
1  
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 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 at 21:50
1  
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 at 22:06
show 2 more comments
vote up 8 vote down

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|flag
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 at 19:47
vote up 83 vote down

Because there is a HUGE working code base in C.

link|flag
27  
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 at 19:46
6  
@Joan: Depends on the meaning of M: xkcd.com/394 – Mehrdad Afshari Apr 23 at 19:47
4  
But Linux is only 4 million, that's why it's better! – Chris S Apr 23 at 19:54
3  
I just realized you can now get comments voted up by posting XKCD links. – mmyers Apr 23 at 20:07
7  
Wait wait wait. Did you say "*working* code base". :) – GMan Apr 23 at 20:26
show 10 more comments

Your Answer

Get an OpenID
or

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