Jump to content

C Sharp (programming language)

From Simple English Wikipedia, the free encyclopedia
Revision as of 14:16, 31 December 2007 by 82.122.171.222 (talk) (New page: {{Title|C#}} ---- '''C#''' (pronounced "see sharp") is a computer programming language developed by Microsoft, more precisely by Anders Hejlsberg, the Delphi's creator....)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The title of this article is wrong due to some technical limitations. The right title is C#.

C# (pronounced "see sharp") is a computer programming language developed by Microsoft, more precisely by Anders Hejlsberg, the Delphi's creator. It was create for use all capacities of .NET platform. The first version is appeard in 2001, last update appeard in 2007 with the C# 3.0. C# is a modern language more and more appreciate by the developer.


Execution Platform

Today, C# can be run on most of platform (Windows, Linux, ...) without modification of the source code. The C# can be run on the Xbox 360 platform with a special framwork.

Syntax

C# code looks a lot like C++ and Java code. Their is an object-oriented programming language. The CLR (Common Language Runtime is obligatory in order to run a C# program.

Example:

using System;
 
class HelloWorld
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Hello World!");
    }
}

This code write "Hello world" in the output console.

Integrated Development Environment

Windows:

Unix/Linux:

See Also

Programming language

(en) Visual C# Develloper Center

(en) C# lessons

(en) C# Station