Programming languages

C#

A modern, object-oriented programming language for building applications on the .NET platform.

Share this starting point code.study/csharp
Created by
Anders Hejlsberg , Scott Wiltamuth , Peter Golde
First appeared
2000
Official resource
Visit the main website

Your first program

Hello, World!

C#
using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, World!");
        }
    }
}