Skip to content

02 Hello World

Russ Painter edited this page Sep 27, 2018 · 2 revisions

C# Introduction

C# Program Structure

Simplest C# Program

using System;

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

Clone this wiki locally