Deleted:C+Sharp+(programming+language)

From WikiAlpha
Jump to: navigation, search
The below content is licensed according to Creative Commons Attribution-ShareAlike License contrary to the public domain logo at the foot of the page. It originally appeared on http://en.wikipedia.org. The original article might still be accessible here. You may be able to find a list of the article's previous contributors on the talk page.

C#
150px
Paradigm(s) multi-paradigm: structured, imperative, object-oriented, event-driven, functional, generic, reflective
Appeared in 2001
Designed by Microsoft
Developer Microsoft
Stable release 4.0 (April 12, 2010; 13 years ago (2010-04-12))
Typing discipline static, dynamic,[1] strong, safe, nominative
Major implementations .NET Framework, Mono, DotGNU
Dialects , Spec#, Polyphonic C#
Influenced by Java,[2] C++,[3] Eiffel, Modula-3, Object Pascal[4]
Influenced D, F#, Java 5,[5] Nemerle, Vala
Platform Common Language Infrastructure
License CLR is proprietary, Mono compiler is dual GPLv3, MIT/X11 and libraries are LGPLv2, DotGNU is dual GPL and LGPLv2
Usual filename extensions .cs
Website C# Language (MSDN)
*

C#[6] (pronounced see sharp) is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines. It was developed by Microsoft within its .NET initiative and later approved as a standard by Ecma (ECMA-334) and ISO (ISO/IEC 23270). C# is one of the programming languages designed for the Common Language Infrastructure.

C# is intended to be a simple, modern, general-purpose, object-oriented programming language.[7] Its development team is led by Anders Hejlsberg. The most recent version is C# 4.0, which was released on April 12, 2010.

Design goals

The ECMA standard lists these design goals for C#:[7]

  • C# language is intended to be a simple, modern, general-purpose, object-oriented programming language.
  • The language, and implementations thereof, should provide support for software engineering principles such as strong type checking, array bounds checking, detection of attempts to use uninitialized variables, and automatic garbage collection. Software robustness, durability, and programmer productivity are important.
  • The language is intended for use in developing software components suitable for deployment in distributed environments.
  • Source code portability is very important, as is programmer portability, especially for those programmers already familiar with C and C++.
  • Support for internationalization is very important.
  • C# is intended to be suitable for writing applications for both hosted and embedded systems, ranging from the very large that use sophisticated operating systems, down to the very small having dedicated functions.
  • Although C# applications are intended to be economical with regard to memory and processing power requirements, the language was not intended to compete directly on performance and size with C, C++ or assembly language.

Name

The name "C sharp" was inspired by musical notation where a sharp indicates that the written note should be made a semitone higher in pitch.[8] This is similar to the language name of C++, where "++" indicates that a variable should be incremented by 1.

Due to technical limitations of display (standard fonts, browsers, etc.) and the fact that the sharp symbol (U+266F MUSIC SHARP SIGN (HTML ♯)) is not present on the standard keyboard, the number sign (U+0023 # NUMBER SIGN (HTML #)) was chosen to represent the sharp symbol in the written name of the programming language.[9] This convention is reflected in the ECMA-334 C# Language Specification.[7] However, when it is practical to do so (for example, in advertising or in box art[10]), Microsoft uses the intended musical symbol.

The "sharp" suffix has been used by a number of other .NET languages that are variants of existing languages, including J# (a .NET language also designed by Microsoft that is derived from Java 1.1), A# (from Ada), and the functional programming language F#.[11] The original implementation of Eiffel for .NET was called Eiffel#,[12] a name since retired since the full Eiffel language is now supported. The suffix has also been used for libraries, such as Gtk# (a .NET wrapper for GTK+ and other GNOME libraries), Cocoa# (a wrapper for Cocoa) and Qt# (a .NET language binding for the Qt toolkit).

History

During the development of the .NET Framework, the class libraries were originally written using a managed code compiler system called Simple Managed C (SMC).[13][14][15] In January 1999, Anders Hejlsberg formed a team to build a new language at the time called Cool, which stood for "C-like Object Oriented Language".[16] Microsoft had considered keeping the name "Cool" as the final name of the language, but chose not to do so for trademark reasons. By the time the .NET project was publicly announced at the July 2000 Professional Developers Conference, the language had been renamed C#, and the class libraries and ASP.NET runtime had been ported to C#.

C#'s principal designer and lead architect at Microsoft is Anders Hejlsberg, who was previously involved with the design of Turbo Pascal, Embarcadero Delphi (formerly CodeGear Delphi and Borland Delphi), and Visual J++. In interviews and technical papers he has stated that flaws[citation needed] in most major programming languages (e.g. C++, Java, Delphi, and Smalltalk) drove the fundamentals of the Common Language Runtime (CLR), which, in turn, drove the design of the C# language itself.

James Gosling, who created the Java programming language in 1994, and Bill Joy, a co-founder of Sun Microsystems, the originator of Java, called C# an "imitation" of Java; Gosling further claimed that "[C# is] sort of Java with reliability, productivity and security deleted."[2][17] Klaus Kreft and Angelika Langer (authors of a C++ streams book) stated in a blog post that "Java and C# are almost identical programming languages. Boring repetition that lacks innovation," "Hardly anybody will claim that Java or C# are revolutionary programming languages that changed the way we write programs," and "C# borrowed a lot from Java - and vice versa. Now that C# supports boxing and unboxing, we'll have a very similar feature in Java." [18] Anders Hejlsberg has argued that C# is "not a Java clone" and is "much closer to C++" in its design.[19]

Since the release of C# 2.0 in November of 2005, the C# and Java languages have evolved on increasingly divergent trajectories, becoming somewhat less similar. One of the first major departures came with the addition of generics to both languages, with vastly different implementations. C# makes use of reification to provide "first-class" generic objects that can be used like any other class, with code generation performed at class-load time.[20] By contrast, Java's generics are essentially a language syntax feature, and they do not affect the generated byte code, because the compiler performs type erasure on the generic type information after it has verified its correctness.[21]

Furthermore, C# has added several major features to accommodate functional-style programming, culminating in their LINQ extensions released with C# 3.0 and its supporting framework of lambda expressions, extension methods, and anonymous classes.[22] These features enable C# programmers to use functional programming techniques, such as closures, when it is advantageous to their application. The LINQ extensions and the functional imports help developers reduce the amount of "boilerplate" code that is included in common tasks like querying a database, parsing an xml file, or searching through a data structure, shifting the emphasis onto the actual program logic to help improve readability and maintainability.[23]

C# used to have a mascot called Andy (named after Anders Hejlsberg). It was retired on 29 Jan 2004.[24]

Versions

In the course of its development, the C# language has gone through several versions:

Version Language specification Date .NET Framework Visual Studio
ECMA ISO/IEC Microsoft
C# 1.0 December 2002 April 2003 January 2002 January 2002 .NET Framework 1.0 Visual Studio .NET 2002
C# 1.2 October 2003 April 2003 .NET Framework 1.1 Visual Studio .NET 2003
C# 2.0 June 2006 September 2006 September 2005[note 1] November 2005 .NET Framework 2.0 Visual Studio 2005
C# 3.0 None[note 2] August 2007 November 2007

.NET Framework 2.0 (Except LINQ/Query Extensions) [1]
.NET Framework 3.0 (Except LINQ/Query Extensions) [2]
.NET Framework 3.5

Visual Studio 2008
Visual Studio 2010
C# 4.0 April 2010 April 2010 .NET Framework 4 Visual Studio 2010
  1. The Microsoft C# 2.0 specification document only contains the new 2.0 features. For older features use the 1.2 specification above.
  2. As of December 2010, no ECMA and ISO/IEC specifications exist for C# 3.0 and 4.0.
Summary of versions
C# 2.0 C# 3.0 C# 4.0 C# 5.0 (planned)[25]
Features
added
  • Generics
  • Partial types
  • Anonymous methods
  • Iterators
  • Nullable types
  • Private setters (properties)
  • Method group conversions (delegates)
  • Implicitly typed local variables
  • Object and collection initializers
  • Auto-Implemented properties
  • Anonymous types
  • Extension methods
  • Query expressions
  • Lambda expressions
  • Expression trees
  • Dynamic binding
  • Named and optional arguments
  • Generic co- and contravariance

Distinguishing features

Note: The following description is based on the language standard and other documents listed in the external links section.

By design, C# is the programming language that most directly reflects the underlying Common Language Infrastructure (CLI). Most of its intrinsic types correspond to value-types implemented by the CLI framework. However, the language specification does not state the code generation requirements of the compiler: that is, it does not state that a C# compiler must target a Common Language Runtime, or generate Common Intermediate Language (CIL), or generate any other specific format. Theoretically, a C# compiler could generate machine code like traditional compilers of C++ or Fortran.

Some notable features of C# that distinguish it from C and C++ (and Java, where noted) are:

  • It has no global variables or functions. All methods and members must be declared within classes. Static members of public classes can substitute for global variables and functions.
  • Local variables cannot shadow variables of the enclosing block, unlike C and C++. Variable shadowing is often considered confusing by C++ texts.
  • C# supports a strict Boolean data type, <source lang="Csharp" enclose="none">bool</source>. Statements that take conditions, such as <source lang="Csharp" enclose="none">while</source> and <source lang="Csharp" enclose="none">if</source>, require an expression of a type that implements the <source lang="Csharp" enclose="none">true</source> operator, such as the boolean type. While C++ also has a boolean type, it can be freely converted to and from integers, and expressions such as <source lang="Csharp" enclose="none">if(a)</source> require only that <source lang="Csharp" enclose="none">a</source> is convertible to bool, allowing <source lang="Csharp" enclose="none">a</source> to be an int, or a pointer. C# disallows this "integer meaning true or false" approach, on the grounds that forcing programmers to use expressions that return exactly <source lang="Csharp" enclose="none">bool</source> can prevent certain types of common programming mistakes in C or C++ such as <source lang="Csharp" enclose="none">if</source> (a = b) (use of assignment = instead of equality ==).
  • In C#, memory address pointers can only be used within blocks specifically marked as unsafe, and programs with unsafe code need appropriate permissions to run. Most object access is done through safe object references, which always either point to a "live" object or have the well-defined null value; it is impossible to obtain a reference to a "dead" object (one that has been garbage collected), or to a random block of memory. An unsafe pointer can point to an instance of a value-type, array, string, or a block of memory allocated on a stack. Code that is not marked as unsafe can still store and manipulate pointers through the <source lang="Csharp" enclose="none">System.IntPtr</source> type, but it cannot dereference them.
  • Managed memory cannot be explicitly freed; instead, it is automatically garbage collected. Garbage collection addresses the problem of memory leaks by freeing the programmer of responsibility for releasing memory that is no longer needed.
  • In addition to the <source lang="Csharp" enclose="none">try...catch</source> construct to handle exceptions, C# has a <source lang="Csharp" enclose="none">try...finally</source> construct to guarantee execution of the code in the <source lang="Csharp" enclose="none">finally</source> block.
  • Multiple inheritance is not supported, although a class can implement any number of interfaces. This was a design decision by the language's lead architect to avoid complication and simplify architectural requirements throughout CLI.
  • C#, like C++, but unlike Java, supports operator overloading.
  • C# is more type safe than C++. The only implicit conversions by default are those that are considered safe, such as widening of integers. This is enforced at compile-time, during JIT, and, in some cases, at runtime. No implicit conversions occur between booleans and integers, nor between enumeration members and integers (except for literal 0, which can be implicitly converted to any enumerated type). Any user-defined conversion must be explicitly marked as explicit or implicit, unlike C++ copy constructors and conversion operators, which are both implicit by default. Starting with version 4.0, C# supports a "dynamic" data type that enforces type checking at runtime only.
  • Enumeration members are placed in their own scope.
  • C# provides properties as syntactic sugar for a common pattern in which a pair of methods, accessor (getter) and mutator (setter) encapsulate operations on a single attribute of a class.
  • Full type reflection and discovery is available.
  • Checked exceptions are not present in C# (in contrast to Java). This has been a conscious decision based on the issues of scalability and versionability.[26]

Common Type System (CTS)

C# has a unified type system. This unified type system is called Common Type System (CTS).[27]

A unified type system implies that all types, including primitives such as integers, are subclasses of the <source lang="Csharp" enclose="none">System.Object</source> class. For example, every type inherits a <source lang="Csharp" enclose="none">ToString()</source> method.

Categories of data types

CTS separates data types into two categories:[27]

  1. Value types
  2. Reference types

Instances of value types do not have referential identity nor referential comparison semantics - equality and inequality comparisons for value types compare the actual data values within the instances, unless the corresponding operators are overloaded. Value types are derived from <source lang="Csharp" enclose="none">System.ValueType</source>, always have a default value, and can always be created and copied. Some other limitations on value types are that they cannot derive from each other (but can implement interfaces) and cannot have an explicit default (parameterless) constructor. Examples of value types are all primitive types, such as <source lang="Csharp" enclose="none">int</source> (a signed 32-bit integer), <source lang="Csharp" enclose="none">float</source> (a 32-bit IEEE floating-point number), <source lang="Csharp" enclose="none">char</source> (a 16-bit Unicode code unit), and <source lang="Csharp" enclose="none">System.DateTime</source> (identifies a specific point in time with nanosecond precision). Other examples are <source lang="Csharp" enclose="none">enum</source> (enumerations) and <source lang="Csharp" enclose="none">struct</source> (user defined structures).

In contrast, reference types have the notion of referential identity - each instance of a reference type is inherently distinct from every other instance, even if the data within both instances is the same. This is reflected in default equality and inequality comparisons for reference types, which test for referential rather than structural equality, unless the corresponding operators are overloaded (such as the case for <source lang="Csharp" enclose="none">System.String</source>). In general, it is not always possible to create an instance of a reference type, nor to copy an existing instance, or perform a value comparison on two existing instances, though specific reference types can provide such services by exposing a public constructor or implementing a corresponding interface (such as <source lang="Csharp" enclose="none">ICloneable</source> or <source lang="Csharp" enclose="none">IComparable</source>). Examples of reference types are <source lang="Csharp" enclose="none">object</source> (the ultimate base class for all other C# classes), <source lang="Csharp" enclose="none">System.String</source> (a string of Unicode characters), and <source lang="Csharp" enclose="none">System.Array</source> (a base class for all C# arrays).

Both type categories are extensible with user-defined types.

Boxing and unboxing

Boxing is the operation of converting a value of a value type into a value of a corresponding reference type.[27] Boxing in C# is implicit.

Unboxing is the operation of converting a value of a reference type (previously boxed) into a value of a value type.[27] Unboxing in C# requires an explicit type cast. A boxed object of type T can only be unboxed to a T (or a nullable T).[28]

Example: <syntaxhighlight lang=CSharp> int foo = 42; // Value type. object bar = foo; // foo is boxed to bar. int foo2 = (int)bar; // Unboxed back to value type. </syntaxhighlight>

Generics

Generics were added to version 2.0 of the C# language. Generics use type parameters, which make it possible to design classes and methods that do not specify the type used until the class or method is instantiated. The main advantage is that one can use generic type parameters to create classes and methods that can be used without incurring the cost of runtime casts or boxing operations, as shown here:[29]

<syntaxhighlight lang=CSharp> // Declare the generic class.

public class GenericList<T> {

   void Add(T input) { }

}

class TestGenericList {

   private class ExampleClass { }
   static void Main()
   {
       // Declare a list of type int.
       GenericList<int> list1 = new GenericList<int>();
       // Declare a list of type string.
       GenericList<string> list2 = new GenericList<string>();
       // Declare a list of type ExampleClass.
       GenericList<ExampleClass> list3 = new GenericList<ExampleClass>();
   }

} </syntaxhighlight>

Preprocessor

C# features "preprocessor directives"[30] (though it does not have an actual preprocessor) based on the C preprocessor that allow programmers to define symbols, but not macros. Conditionals such as <source lang="Csharp" enclose="none">#if</source>, <source lang="Csharp" enclose="none">#endif</source>, and <source lang="Csharp" enclose="none">#else</source> are also provided. Directives such as <source lang="Csharp" enclose="none">#region</source> give hints to editors for code folding.

<syntaxhighlight lang=CSharp> public class Foo {

   #region Procedures
   public void IntBar(int firstParam) {}
   public void StrBar(string firstParam) {}
   public void BoolBar(bool firstParam) {}
   #endregion
   #region Constructors
   public Foo() {}
   public Foo(int firstParam) {}
   #endregion

} </syntaxhighlight>

Code comments

C# utilizes a double forward slash (<source lang="Csharp" enclose="none">//</source>) to indicate the rest of the line is a comment. This is inherited from C++.

<syntaxhighlight lang=CSharp> public class Foo {

   // a comment
   public static void Bar(int firstParam) {}  // also a comment

} </syntaxhighlight>

Multi-line comments can be indicated by a starting forward slash/asterisk (<source lang="Csharp" enclose="none">/*</source>) and ending asterisk/forward slash (<source lang="Csharp" enclose="none">*/</source>). This is inherited from standard C.

<syntaxhighlight lang=CSharp> public class Foo {

   /* A Multi-Line
      comment  */
   public static void Bar(int firstParam) {}

} </syntaxhighlight>

XML documentation system

C#'s documentation system is similar to Java's Javadoc, but based on XML. Two methods of documentation are currently supported by the C# compiler.

Single-line documentation comments, such as those commonly found in Visual Studio generated code, are indicated on a line beginning with <source lang="Csharp" enclose="none">///</source>.

<syntaxhighlight lang=CSharp> public class Foo {

   /// <summary>A summary of the method.</summary>
   /// <param name="firstParam">A description of the parameter.</param>
   /// <remarks>Remarks about the method.</remarks>
   public static void Bar(int firstParam) {}

} </syntaxhighlight>

Multi-line documentation comments, while defined in the version 1.0 language specification, were not supported until the .NET 1.1 release.[31] These comments are designated by a starting forward slash/asterisk/asterisk (<source lang="Csharp" enclose="none">/**</source>) and ending asterisk/forward slash (<source lang="Csharp" enclose="none">*/</source>).[32]

<syntaxhighlight lang=CSharp> public class Foo {

   /** <summary>A summary of the method.</summary>
    *  <param name="firstParam">A description of the parameter.</param>
    *  <remarks>Remarks about the method.</remarks> */
   public static void Bar(int firstParam) {}

} </syntaxhighlight>

Note there are some stringent criteria regarding white space and XML documentation when using the forward slash/asterisk/asterisk (<source lang="Csharp" enclose="none">/**</source>) technique.

This code block:

<syntaxhighlight lang=CSharp> /**

* <summary>
* A summary of the method.</summary>*/

</syntaxhighlight>

produces a different XML comment from this code block:[32]

<syntaxhighlight lang=CSharp> /**

* <summary>
  A summary of the method.</summary>*/

</syntaxhighlight>

Syntax for documentation comments and their XML markup is defined in a non-normative annex of the ECMA C# standard. The same standard also defines rules for processing of such comments, and their transformation to a plain XML document with precise rules for mapping of CLI identifiers to their related documentation elements. This allows any C# IDE or other development tool to find documentation for any symbol in the code in a certain well-defined way.

Libraries

The C# specification details a minimum set of types and class libraries that the compiler expects to have available. In practice, C# is most often used with some implementation of the Common Language Infrastructure (CLI), which is standardized as ECMA-335 Common Language Infrastructure (CLI).

"Hello world" example

The following is a very simple C# program, a version of the classic "Hello world" example:

<syntaxhighlight lang=CSharp> using System;

class Program {

   static void Main()
   {
       Console.WriteLine("Hello world!");
   }

} </syntaxhighlight>

The effect is to write the following text to the output console:

Hello world!

Each line has a purpose:

<syntaxhighlight lang=CSharp> using System; </syntaxhighlight>

The above line of code tells the compiler to use System as a candidate prefix for types used in the source code. In this case, when the compiler sees use of the Console type later in the source code, it tries to find a type named Console, first in the current assembly, followed by all referenced assemblies. In this case the compiler fails to find such a type, since the name of the type is actually System.Console. The compiler then attempts to find a type named System.Console by using the System prefix from the <source lang="Csharp" enclose="none">using</source> statement, and this time it succeeds. The <source lang="Csharp" enclose="none">using</source> statement allows the programmer to state all candidate prefixes to use during compilation instead of always using full type names.

<syntaxhighlight lang=CSharp> class Program </syntaxhighlight>

Above is a class definition. Everything between the following pair of braces describes <source lang="Csharp" enclose="none">Program</source>.

<syntaxhighlight lang=CSharp> static void Main() </syntaxhighlight>

This declares the class member method where the program begins execution. The .NET runtime calls the <source lang="Csharp" enclose="none">Main</source> method. (Note: <source lang="Csharp" enclose="none">Main</source> may also be called from elsewhere, like any other method, e.g. from another method of <source lang="Csharp" enclose="none">Program</source>.) The <source lang="Csharp" enclose="none">static</source> keyword makes the method accessible without an instance of <source lang="Csharp" enclose="none">Program</source>. Each console application's <source lang="Csharp" enclose="none">Main</source> entry point must be declared <source lang="Csharp" enclose="none">static</source>. Otherwise, the program would require an instance, but any instance would require a program. To avoid that irresolvable circular dependency, C# compilers processing console applications (like that above) report an error, if there is no <source lang="Csharp" enclose="none">static Main</source> method. The <source lang="Csharp" enclose="none">void</source> keyword declares that <source lang="Csharp" enclose="none">Main</source> has no return value.

<syntaxhighlight lang=CSharp> Console.WriteLine("Hello world!"); </syntaxhighlight>

This line writes the output. <source lang="Csharp" enclose="none">Console</source> is a static class in the <source lang="Csharp" enclose="none">System</source> namespace. It provides an interface to the standard input, output, and error streams for console applications. The program calls the <source lang="Csharp" enclose="none">Console</source> method <source lang="Csharp" enclose="none">WriteLine</source>, which displays on the console a line with the argument, the string <source lang="Csharp" enclose="none">"Hello world!"</source>.

A GUI example: A Windows Form with a single Button when clicked shows a Message Box with "Hello World" written on it. <syntaxhighlight lang=CSharp> using System; using System.Windows.Forms;

namespace Hello_World {

   public partial class Hello_World : Form
   {
       public Hello_World()
       {
           InitializeComponent();
       }
       private void button1_Click(object sender, EventArgs e)
       {
           MessageBox.Show("Hello World", "Hello");
       }
   }

} </syntaxhighlight>

Standardization and licensing

In August, 2000, Microsoft Corporation, Hewlett-Packard and Intel Corporation co-sponsored the submission of specifications for C# as well as the Common Language Infrastructure (CLI) to the standards organization Ecma International. In December 2001, ECMA released ECMA-334 C# Language Specification. C# became an ISO standard in 2003 (ISO/IEC 23270:2003 - Information technology — Programming languages — C#). ECMA had previously adopted equivalent specifications as the 2nd edition of C#, in December 2002.

In June 2005, ECMA approved edition 3 of the C# specification, and updated ECMA-334. Additions included partial classes, anonymous methods, nullable types, and generics (similar to C++ templates).

In July 2005, ECMA submitted the standards and related TRs to ISO/IEC JTC 1 via the latter's Fast-Track process. This process usually takes 6–9 months.

The C# language definition and the CLI are standardized under ISO and Ecma standards that provide reasonable and non-discriminatory licensing protection from patent claims. However, Microsoft uses C# and the CLI in its Base Class Library (BCL) that is the foundation of its proprietary .NET framework, and which provides a variety of non-standardized classes (extended I/O, GUI, Web services, etc.). Some cases where Microsoft patents apply to standards used in the .NET framework are documented by Microsoft and the applicable patents are available on either RAND terms or through Microsoft's Open Specification Promise that releases patent rights to the public,[33] but there is some concern and debate as to whether there are additional aspects patented by Microsoft that are not covered, which may deter independent implementations of the full framework.

Microsoft has agreed not to sue open source developers for violating patents in non-profit projects for the part of the framework that is covered by the OSP.[34] Microsoft has also agreed not to enforce patents relating to Novell products against Novell's paying customers[35] with the exception of a list of products that do not explicitly mention C#, .NET or Novell's implementation of .NET (The Mono Project).[36] However, Novell maintains that Mono does not infringe any Microsoft patents.[37] Microsoft has also made a specific agreement not to enforce patent rights related to the Moonlight browser plugin, which depends on Mono, provided it is obtained through Novell.[38]

In a note posted on the Free Software Foundation's news website in June 2009, Richard Stallman warned that he believes that "Microsoft is probably planning to force all free C# implementations underground some day using software patents", and recommended that developers avoid taking what he described as the "gratuitous risk" associated with "depend[ing] on the free C# implementations".[39] The Free Software Foundation later reiterated its warnings,[40] claiming that the extension of Microsoft Community Promise to the C# and the CLI ECMA specifications[41] would not prevent Microsoft from harming open-source implementations of C#, because many specific Windows libraries included with .NET or Mono were not covered by this promise.

Implementations

The reference C# compiler is Microsoft Visual C#.

Other C# compilers exist, often including an implementation of the Common Language Infrastructure and the .NET class libraries up to .NET 2.0:

  • The Mono project provides an open source C# compiler, a complete open source implementation of the Common Language Infrastructure including the required framework libraries as they appear in the ECMA specification, and a nearly complete implementation of the Microsoft proprietary .NET class libraries up to .NET 3.5. As of Mono 2.6, no plans exist to implement WPF; WF is planned for a later release; and there are only partial implementations of LINQ to SQL and WCF.[42]
  • The DotGNU project also provides an open source C# compiler, a nearly complete implementation of the Common Language Infrastructure including the required framework libraries as they appear in the ECMA specification, and subset of some of the remaining Microsoft proprietary .NET class libraries up to .NET 2.0 (those not documented or included in the ECMA specification, but included in Microsoft's standard .NET Framework distribution).
  • Microsoft's Rotor project (currently called Shared Source Common Language Infrastructure) (licensed for educational and research use only) provides a shared source implementation of the CLR runtime and a C# compiler, and a subset of the required Common Language Infrastructure framework libraries in the ECMA specification (up to C# 2.0, and supported on Windows XP only).
  • The DotNetAnywhere Micro Framework-like Common Language Runtime is targeted at embedded systems, and supports almost all C# 2.0 specifications. It is licensed under the MIT License conditions, is implemented in C and directed towards embedded devices.[43][44]

References

  1. Torgersen, Mads (October 27, 2008). "New features in C# 4.0". Microsoft. http://code.msdn.microsoft.com/csharpfuture/Release/ProjectReleases.aspx?ReleaseId=1686. Retrieved 2008-10-28. 
  2. 2.0 2.1 Wylie Wong (2002). "Why Microsoft's C# isn't". CNET: CBS Interactive. http://news.cnet.com/2008-1082-817522.html. Retrieved 2009-11-14. 
  3. Naugler, David (May 2007). "C# 2.0 for C++ and Java programmer: conference workshop". Journal of Computing Sciences in Colleges 22 (5). "Although C# has been strongly influenced by Java it has also been strongly influenced by C++ and is best viewed as a descendant of both C++ and Java.". 
  4. "The A-Z of Programming Languages: C#". Computerworld. 1 October 2008. http://www.computerworld.com.au/article/261958/a-z_programming_languages_c_/?pp=7. Retrieved 12 February 2010. "We all stand on the shoulders of giants here and every language builds on what went before it so we owe a lot to C, C++, Java, Delphi, all of these other things that came before us. (Anders Hejlsberg)" 
  5. Cornelius, Barry (December 1, 2005). "Java 5 catches up with C#". University of Oxford Computing Services. http://www.barrycornelius.com/papers/java5/onefile/. Retrieved June 18, 2009. 
  6. By convention, a hash sign is used for the second character in normal text; in artistic representations, sometimes a true sharp sign is used: C♯.
  7. 7.0 7.1 7.2 C# Language Specification (4th ed.). Ecma International. June 2006. http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-334.pdf. Retrieved June 18, 2009. 
  8. Kovacs, James (September 7, 2007). "C#/.NET History Lesson". http://www.jameskovacs.com/blog/CNETHistoryLesson.aspx. Retrieved June 18, 2009. 
  9. "Microsoft C# FAQ". Microsoft. http://msdn.microsoft.com/vcsharp/previous/2002/FAQ/default.aspx. Retrieved 2008-03-25. [dead link]
  10. "Visual C#.net Standard" (JPEG). Microsoft. September 4, 2003. http://www.microsoft.com/presspass/images/gallery/boxshots/web/visual-c-sharp03.jpg. Retrieved June 18, 2009. 
  11. "F# FAQ". Microsoft Research. http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/faq.aspx. Retrieved June 18, 2009.  [dead link]
  12. Simon, Raphael; Stapf, Emmanuel; Meyer, Bertrand (June 2002). "Full Eiffel on the .NET Framework". Microsoft. http://msdn.microsoft.com/en-us/library/ms973898.aspx. Retrieved June 18, 2009. 
  13. Zander, Jason (November 23, 2007). "Couple of Historical Facts". http://blogs.msdn.com/jasonz/archive/2007/11/23/couple-of-historical-facts.aspx. Retrieved 2008-02-21. 
  14. "C# 3.0 New Features". http://www.learnitonweb.com/Articles/ReadArticle.aspx?contId=4&page=1. Retrieved 2008-06-08. 
  15. Guthrie, Scott (November 28, 2006). "What language was ASP.Net originally written in?". http://aspadvice.com/blogs/rbirkby/archive/2006/11/28/What-language-was-ASP.Net-originally-written-in_3F00_.aspx. Retrieved 2008-02-21. 
  16. Hamilton, Naomi (October 1, 2008). "The A-Z of Programming Languages: C#". Computerworld. http://www.computerworld.com.au/article/261958/-z_programming_languages_c. Retrieved 2008-10-01. 
  17. Bill Joy (2002-02-07). "Microsoft's blind spot". cnet.com. http://news.cnet.com/2010-1071-831385.html. Retrieved 2010-01-12. 
  18. Klaus Kreft and Angelika Langer (2003-07-03). "After Java and C# - what is next?". artima.com. http://www.artima.com/weblogs/viewpost.jsp?thread=6543. Retrieved 2010-01-12. 
  19. Osborn, John (2000-08-01), Deep Inside C#: An Interview with Microsoft Chief Architect Anders Hejlsberg, O'Reilly Media, http://windowsdevcenter.com/pub/a/oreilly/windows/news/hejlsberg_0800.html, retrieved 2009-11-14 
  20. "Generics (C# Programming Guide)". Microsoft. http://msdn.microsoft.com/en-us/library/512aeb7t.aspx. Retrieved 2011-03-21. 
  21. Bracha, Gilad (2004-07-05). "Generics in the Java Programming Language". Sun Microsystems. http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf. Retrieved 2011-03-21. 
  22. Don Box and Anders Hejlsberg (February 2007). "LINQ: .NET Language-Integrated Query". Microsoft. http://msdn.microsoft.com/en-us/library/bb308959.aspx. Retrieved 2011-03-21. 
  23. Mercer, Ian (2010-04-15). "Why functional programming and LINQ is often better than procedural code". abodit.com. http://blog.abodit.com/2010/04/why-functional-programming-is-better-linq-c-sharp-than-procedural-code/. Retrieved 2011-03-21. 
  24. http://blogs.msdn.com/b/danielfe/archive/2004/01/29/64429.aspx
  25. Hejlsberg, Anders. "Future directions for C# and Visual Basic". C# lead architect. Channel 9. http://channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-816T. Retrieved 21 September 2011. 
  26. Venners, Bill; Eckel, Bruce (August 18, 2003). "The Trouble with Checked Exceptions". http://www.artima.com/intv/handcuffs.html. Retrieved 2010-03-30. 
  27. 27.0 27.1 27.2 27.3 Archer, Tom (2001). "Part 2, Chapter 4: The Type System". Inside C#. Redmond, Washington: Microsoft Press. ISBN 0-7356-1288-9. 
  28. http://blogs.msdn.com/b/ericlippert/archive/2009/03/19/representation-and-identity.aspx
  29. "Generics (C# Programming Guide)". Microsoft. http://msdn.microsoft.com/en-us/library/512aeb7t.aspx. Retrieved 7 August 2011. 
  30. "C# Preprocessor Directives". C# Language Reference. Microsoft. http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx. Retrieved June 18, 2009. 
  31. Horton, Anson (2006-09-11). "C# XML documentation comments FAQ". http://blogs.msdn.com/ansonh/archive/2006/09/11/750056.aspx. Retrieved 2007-12-11. 
  32. 32.0 32.1 "Delimiters for Documentation Tags". C# Programmer's Reference. Microsoft. January 1, 1970 GMT. http://msdn.microsoft.com/en-us/library/5fz4y783(VS.71).aspx. Retrieved June 18, 2009. 
  33. "Interoperability Principles". http://www.microsoft.com/interop/principles/default.mspx. 
  34. "Patent Pledge for Open Source Developers". http://www.microsoft.com/interop/principles/osspatentpledge.mspx. 
  35. "Patent Cooperation Agreement - Microsoft & Novell Interoperability Collaboration". Microsoft. November 2, 2006. http://www.microsoft.com/interop/msnovellcollab/patent_agreement.mspx. Retrieved July 5, 2009. "Microsoft, on behalf of itself and its Subsidiaries (collectively “Microsoft”), hereby covenants not to sue Novell’s Customers and Novell’s Subsidiaries’ Customers for infringement under Covered Patents of Microsoft on account of such a Customer’s use of specific copies of a Covered Product as distributed by Novell or its Subsidiaries (collectively “Novell”) for which Novell has received Revenue (directly or indirectly) for such specific copies; provided the foregoing covenant is limited to use by such Customer (i) of such specific copies that are authorized by Novell in consideration for such Revenue, and (ii) within the scope authorized by Novell in consideration for such Revenue." 
  36. "Definitions". Microsoft. November 2, 2006. http://www.microsoft.com/interop/msnovellcollab/definitions2.aspx. Retrieved July 5, 2009. 
  37. Steinman, Justin (November 7, 2006). "Novell Answers Questions from the Community". http://www.novell.com/linux/microsoft/faq_opensource.html. Retrieved July 5, 2009. "We maintain that Mono does not infringe any Microsoft patents." 
  38. "Covenant to Downstream Recipients of Moonlight - Microsoft & Novell Interoperability Collaboration". Microsoft. September 28, 2007. http://www.microsoft.com/interop/msnovellcollab/moonlight.mspx. Retrieved March 8, 2008. "“Downstream Recipient” means an entity or individual that uses for its intended purpose a Moonlight Implementation obtained directly from Novell or through an Intermediate Recipient… Microsoft reserves the right to update (including discontinue) the foregoing covenant… “Moonlight Implementation” means only those specific portions of Moonlight 1.0 or Moonlight 1.1 that run only as a plug-in to a browser on a Personal Computer and are not licensed under GPLv3 or a Similar License." 
  39. Stallman, Richard (June 26, 2009). "Why free software shouldn't depend on Mono or C#". Free Software Foundation. http://www.fsf.org/news/dont-depend-on-mono. Retrieved July 2, 2009. "The danger is that Microsoft is probably planning to force all free C# implementations underground some day using software patents. ... We should systematically arrange to depend on the free C# implementations as little as possible. In other words, we should discourage people from writing programs in C#. Therefore, we should not include C# implementations in the default installation of GNU/Linux distributions, and we should distribute and recommend non-C# applications rather than comparable C# applications whenever possible." 
  40. "Microsoft's Empty Promise". Free Software Foundation. 2009-07-16. http://www.fsf.org/news/2009-07-mscp-mono. Retrieved 2009-078-03. "Until that happens, free software developers still should not write software that depends on Mono. C# implementations can still be attacked by Microsoft's patents: the Community Promise is designed to give the company several outs, if it wants them. We don't want to see developers' hard work lost to the community, if we lose the ability to use Mono, and until we eliminate software patents altogether, using another language is the best way to prevent that from happening." 
  41. "The ECMA C# and CLI Standards". 2009-07-06. http://port25.technet.com/archive/2009/07/06/the-ecma-c-and-cli-standards.aspx. Retrieved 2009-078-03. 
  42. http://www.mono-project.com/Compatibility
  43. Dot Net Anywhere
  44. Dot Net Anywhere license

See also

Further reading

  • Drayton, Peter; Albahari, Ben; Neward, Ted (2002). C# Language Pocket Reference. O'Reilly. ISBN 0-596-00429-X. 
  • Petzold, Charles (2002). Programming Microsoft Windows with C#. Microsoft Press. ISBN 0-7356-1370-2. 

External links

Template:DotNET Template:Microsoft products