Language Basics C# Tutorial

A namespace is declared using the namespace keyword.
The general form of namespace is shown here:

namespace name {
    // members
    }

using System;
namespace HelloWorld
{
  /// 
  /// Summary description for Class1.
  /// 

  class Class1
  {
    /// 
    /// The main entry point for the application.
    /// 

    [STAThread]
    static void Main(string[] args)
    {
      System.Console.WriteLine( "Hello world from C#" ); 
    }
  }
}
Hello world from C#