Specials
 
 
Green CHROME DIOPSIDE gemstone bottle rough Gems in a Bottle gem stones jar Crafts samples nice 1
 Green CHROME DIOPSIDE bottle Gems in a Bottle jar Crafts samples nice 1 
 
ROSEWOOD tropical wood raw hardwood chunk piece Machaerium schleroxylon 4 grams brown very nice
 ROSEWOOD tropical wood raw hardwood chunk piece Machaerium schleroxylon 4 grams brown very nice 
 
SUGILITE gemstone bottle rough Gems in a Bottle gem stones jar Craft tumbled knick knack samples 1
 SUGILITE bottle Gems in a Bottle jar Craft tumbled knick knack samples 1 
 
Peach MOONSTONE gemstone bottle rough Gem stones in a Bottle gems jar Craft samples very nice 1
 Peach MOONSTONE bottle Gem in a Bottle jar Craft samples very nice 1 
 
Yellow green CHRYSOBERYL gemstone bottle rough Gems in a Bottle gem stones jar Crafts samples nice 1
 Yellow green CHRYSOBERYL bottle Gems in a Bottle jar Crafts samples nice 1 
 
Office Supplies ~~ Buy Posters ~~ A-Z Products ~~ Website Advertising


C Sharp programming language - Wikipedia

<<Up     Contents

C Sharp programming language

C# (pronounced "see sharp") is an object-oriented programming language developed by Microsoft Corporation as part of their .NET initiative.

Microsoft based C# on C++ and the Java programming language. Such languages sacrifice RAD (Rapid Application Development) conveniences for power and low-level control. C# was designed as balance between power and development speed.

Unlike languages such as C and C++, C# does not compile to binary code, which can be executed directly by the target computer. Instead all .NET languages (which includes Visual Basic .NET and Managed C++ as well as C#) compile to something Microsoft calls MSIL. To the casual observer, the resulting program looks like a normal executable and has an ".exe" extension just like a normal application. However the .NET program actually consists of an intermediate language. When the program is executed, the .NET framework JITs the intermediate code into machine language as it is run. The JITting is very fast and is not noticeable on most modern PCs. As different parts of the program are used, they are JITted. Once JITted, that portion of the program does not need to be JITted again for that run (the program will use the JITted version). Each time a .NET application is run, it needs to be JITted in this fashion. Because the .NET applications require this JITting, only computers with the .NET framework can run .NET applications.

Microsoft has submitted C# to the ECMA for formal standardization. In December 2001, ECMA released ECMA-334 C# Language Specification. There are independent implementations being worked on, including:

More recently, Microsoft has announced plans to add support for generics, partial types and some other new features. Cynics might suggest that this is Microsoft's first step to embrace, extend and extinguish the standard as they have done with other standards before. It will be interesting to see whether these new features are likewise submitted for standardisation.

Example

 using System;

 namespace Example {

     public class HelloWorld {

         private String aString;

         public HelloWorld() {
             aString = "Hello World";
         }

         public override String ToString() {
             return(aString);
         }

         public static void Main() {
             HelloWorld aHelloWorld = new HelloWorld();
             Console.WriteLine(aHelloWorld.ToString());
         }
         //Output is:Hello World
     }
 }

See also: F sharp programming language

External Links

wikipedia.org dumped 2003-03-17 with terodump




 
 
Green CHROME DIOPSIDE gemstone bottle rough Gems in a Bottle gem stones jar Crafts samples nice 1
 Green CHROME DIOPSIDE bottle Gems in a Bottle jar Crafts samples nice 1 
 
ROSEWOOD tropical wood raw hardwood chunk piece Machaerium schleroxylon 4 grams brown very nice
 ROSEWOOD tropical wood raw hardwood chunk piece Machaerium schleroxylon 4 grams brown very nice 
 
SUGILITE gemstone bottle rough Gems in a Bottle gem stones jar Craft tumbled knick knack samples 1
 SUGILITE bottle Gems in a Bottle jar Craft tumbled knick knack samples 1 
 
Peach MOONSTONE gemstone bottle rough Gem stones in a Bottle gems jar Craft samples very nice 1
 Peach MOONSTONE bottle Gem in a Bottle jar Craft samples very nice 1 
 
Yellow green CHRYSOBERYL gemstone bottle rough Gems in a Bottle gem stones jar Crafts samples nice 1
 Yellow green CHRYSOBERYL bottle Gems in a Bottle jar Crafts samples nice 1