C Sharp: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Pat Palmer
mNo edit summary
imported>Robert W King
No edit summary
Line 1: Line 1:
{{subpages}}
{{subpages}}
''For other uses, see [[C (disambiguation)]].''
{{dambigbox|text=For other uses, see [[C (disambiguation)]].}}
 
'''C'''# is a popular, general-purpose [[programming language]] developed for the Microsoft [[.NET Framework]].  C# is fully object oriented and is enjoying continuous improvement by Microsoft.  C# programs are portable across all recent Microsoft operating systems since Windows 98 (but only partially on 98).  C# programs consist of .exe or .dll files, each containing [[Common Intermediate Language]] (CIL) instructions, a manifest (table of contents), [[metadata]], and (possibly) encapsulated resources such as images or audio.   
'''C'''# is a popular, general-purpose [[programming language]] developed for the Microsoft [[.NET Framework]].  C# is fully object oriented and is enjoying continuous improvement by Microsoft.  C# programs are portable across all recent Microsoft operating systems since Windows 98 (but only partially on 98).  C# programs consist of .exe or .dll files, each containing [[Common Intermediate Language]] (CIL) instructions, a manifest (table of contents), [[metadata]], and (possibly) encapsulated resources such as images or audio.   



Revision as of 15:12, 25 April 2008

This article is a stub and thus not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.
For other uses, see C (disambiguation).

C# is a popular, general-purpose programming language developed for the Microsoft .NET Framework. C# is fully object oriented and is enjoying continuous improvement by Microsoft. C# programs are portable across all recent Microsoft operating systems since Windows 98 (but only partially on 98). C# programs consist of .exe or .dll files, each containing Common Intermediate Language (CIL) instructions, a manifest (table of contents), metadata, and (possibly) encapsulated resources such as images or audio.

To execute, C# program require the installation of the .NET Framework's Common Language Runtime (CLR), a virtual machine that hides any operating system details. Microsoft's .NET CLR is available both for Windows client computers and Microsoft web servers.

An independent version of the CLR (not developed by Microsoft) is available as a result of the Mono[1] project; it provides software to develop and run .NET applications on Linux, Solaris, Mac OS X, Windows, and Unix. Sponsored by Novell (http://www.novell.com), Mono is an open source project.

References