operating system
-
Tuesday, May 22, 2012 11:40 AM
hi ,
can u tell me in which language Operating System is developed ?
Windows Xp and Windows 7
All Replies
-
Tuesday, May 22, 2012 12:14 PM
Most of the code in the Windows kernel is C, there is some C++ and some assembler. In user space I beleive it is similar, but there may be other languages involved.
Don Burn Windows Filesystem and Driver Consulting Website: http://www.windrvr.com Blog: http://msmvps.com/blogs/WinDrvr
- Marked As Answer by Doron Holan [MSFT]Microsoft Community Contributor, Owner Tuesday, May 22, 2012 4:20 PM
-
Tuesday, May 22, 2012 2:02 PMAs Don states, in the kernel you use C, C++ is discouraged, though that may change in Win 8, and while assembly is possible it's more of an exercise in futility. As to applications, MFC is available, but more emphasis is placed on managed code using either C++ or the preferred C#.
Gary G. Little NanoTelesis Systems, LLC
- Edited by Gary G. Little Tuesday, May 22, 2012 2:03 PM
-
Thursday, May 24, 2012 6:30 AMGary G. Little wrote:>>As Don states, in the kernel you use C, C++ is discouraged,I'm not sure that's really the right word. The KS audio, AVStream and BDAsamples in the WDK have always been in C++.We need to work "lukewarm", "ambivalent", or "conflicted" in there somehow.--Tim Roberts, timr@probo.comProvidenza & Boekelheide, Inc.
Tim Roberts, VC++ MVP Providenza & Boekelheide, Inc. -
Thursday, May 31, 2012 3:48 AM
if some part of OS is developed using c#, if it is managed code then Framework need to be install to run the program right?(whether bydefault while installing OS it will install the framework?)
any feature of WPF added in Windows 7 because look and feel of OS is totally different from XP ..?
-
Thursday, May 31, 2012 5:21 AMOwnerthere are very few parts of the OS that are in C#, primarily media center is one of the only C# applications in the OS. the changing of the UI/look and feel is done in C with theming support that is private to the OS, nothing like WPF
d -- This posting is provided "AS IS" with no warranties, and confers no rights.
-
Friday, June 01, 2012 6:12 AMbhagya patil wrote:>>any feature of WPF added in Windows 7 because look and feel of OS is totally different from XP ..?The desktop is now drawn by a Direct3D application, and application windowsare stored in textures. That's where the transparency comes from.--Tim Roberts, timr@probo.comProvidenza & Boekelheide, Inc.
Tim Roberts, VC++ MVP Providenza & Boekelheide, Inc.


