CSharp
From SwinBrain
C# (pronounced C Sharp) is one of the main languages for the .NET framework. C# has a syntax similar to the C/C++ and Java programming languages, and combiens features from both.
Hello World in C#
This sample illustrates a simple hello world program.
using System; class MyFirstClass { static void Main() { Console.WriteLine("Hello World"); } }
Further Information
Articles
- Write code using C#
- Quick Start C#
- Learn about using the C# compiler
- Swinburne .NET Coding Standard
- Checkout the .NET Samples
- Check out this BlinkList on getting started with .NET
- Check out this BlinkList on C#